我在Mac OS X应用程序上以Xcode 4.5运行仪器。我有两个依赖NSOperation的子类,在将它们添加到流程队列后,我忘记释放它们。因此,我将它们添加到队列中后就释放了它们。该应用程序运行良好。我在Instruments上对其进行了分析,但是它崩溃了。

processQueue = [[NSOperationQueue alloc] init];
NSUInteger max = [[NSUserDefaults standardUserDefaults] integerForKey:@"jobsKey"];
processQueue.maxConcurrentOperationCount = max;
GeocacheDownloadOperation * downloadOp = [[GeocacheDownloadOperation alloc]  initWithGeocache:cache InPath:directoryPath withDelegate:self];
GeocacheJPGConversionOperation * conversionOp = [[GeocacheJPGConversionOperation alloc] initWithCache:cache WithPath:directoryPath WithDelegate:self];

[conversionOp addDependency:downloadOp];
[processQueue addOperation:downloadOp];
[processQueue addOperation:conversionOp];

[downloadOp release];
[conversionOp release]; //This line makes Instruments crash

当我想释放上一个操作时Instruments崩溃(请参见代码),但是该应用程序似乎运行良好。

有人有建议吗?是Instruments的错误还是我编写的错误代码?

最佳答案

我的猜测是,在释放时,conversionOp会释放所有依赖项(在这种情况下为downloadOp)。因此,您在两个操作都完成后调用[conversionOp版本](这取决于线程的调度方式),因此您过度释放了downloadOp。

10-06 09:58