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使用的主要内容,如果未能解决你的问题,请参考以下文章