如何在 iOS 中找到任何对象的大小?

2023-10-23移动开发问题
1

本文介绍了如何在 iOS 中找到任何对象的大小?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我正在优化我的应用程序,想知道对象的大小是多少,以便我也可以在日志中显示它.

I was optimizing my app and wanted to know that how much is the size of the object, so that I can also show it in log.

假设我有

NSDictionary *temp=(NSDictionary*)[Data objectAtIndex:i];

//data is defined in the .h file 

现在我怎么知道对象 temp 的大小是多少?

now how will I know that how much is the size of the object temp?

我尝试使用变量视图并在我发现的临时部分中:

I tried using the variable view and in the temp section I found:

instance_size=(long int)30498656

instance_size 是我的临时对象的确切大小吗?

Is the instance_size the exact size of my temp object?.

我也试过

sizeof(temp);

但它在那一点上崩溃了.有什么帮助...?

but it crashed on that point. Any help...?

推荐答案

编译器只知道指针,所以它总是返回指针的大小.要查找分配对象的大小,请尝试类似

The compiler knows only about the pointer, and that is why it will always return size of the pointer. To find the size of the allocated object try something like

NSLog(@"size of Object: %zd", malloc_size(myObject));

这篇关于如何在 iOS 中找到任何对象的大小?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

硬件音量按钮更改应用程序音量
Hardware Volume buttons change in app volume(硬件音量按钮更改应用程序音量)...
2024-08-12 移动开发问题
10

Cocos2d - 如何检查不同层中对象之间的交集
Cocos2d - How to check for Intersection between objects in different layers(Cocos2d - 如何检查不同层中对象之间的交集)...
2024-08-12 移动开发问题
8

突出显示朗读文本(在 iPhone 的故事书类型应用程序中)
Highlight Read-Along Text (in a storybook type app for iPhone)(突出显示朗读文本(在 iPhone 的故事书类型应用程序中))...
2024-08-12 移动开发问题
9

Cocos2D + 仅禁用 Retina iPad 图形
Cocos2D + Disabling only Retina iPad Graphics(Cocos2D + 仅禁用 Retina iPad 图形)...
2024-08-12 移动开发问题
10

如何将 32 位 PNG 转换为 RGB565?
How to convert 32 bit PNG to RGB565?(如何将 32 位 PNG 转换为 RGB565?)...
2024-08-12 移动开发问题
21

正确的 cocos2d 场景重启?
Proper cocos2d scene restart?(正确的 cocos2d 场景重启?)...
2024-08-12 移动开发问题
7