如何在xcode 6中使用分配工具

时间:2014-12-22 09:16:08

标签: ios objective-c xcode6 instruments allocation

您好我做了以下代码

- (void)viewDidLoad {

   [super viewDidLoad];
    NSMutableArray *arr = [[NSMutableArray alloc] init];
    NSString *str = @"ok";

    int count=0;
    while (count < 20)
    {
        count++;
        [arr addObject:str];
        NSLog( @"arr is %@",arr );
        if (count == 200)
        {
            NSLog(@"out");
            break;
        }
    }
 }

我获得了无限的内存增长。如何通过仪器找到它?提前谢谢。

0 个答案:

没有答案