Instrument使用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Instrument使用相关的知识,希望对你有一定的参考价值。

 内存泄漏检测

#import "ViewController.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    NSMutableArray *arr1 = [NSMutableArray array];
    NSMutableArray *arr2 = [NSMutableArray array];
    [arr1 addObject:arr2];
    [arr2 addObject:arr1];
}

@end

Product--Profile--Leaks

技术分享

 

技术分享

 

以上是关于Instrument使用的主要内容,如果未能解决你的问题,请参考以下文章

结束haml评论

Xcode 4 Memory Leak Instrument如何获取发生泄漏的代码行

instrument之Time Profiler总结

Instrument之Core Animation工具

Instrument使用

HeapShot 使用 Instrument 检测内存泄漏