gpt4 book ai didi

objective-c - NSOperation子类发布使Instruments崩溃

转载 作者:行者123 更新时间:2023-12-03 16:14:26 24 4
gpt4 key购买 nike

我在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。

关于objective-c - NSOperation子类发布使Instruments崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14318110/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com