我创建了一个项目并使用 Instrument 来观看实时字节。我做了以下事情:
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
char *byte = (char *)malloc(10000000);
}
Instruments 中的活动字节保持在 650KB。
Instrument无法观察malloc方法的分配?
还是苹果不限制这个分配的大小?
谢谢!