gpt4 book ai didi

objective-c - iOS5 在 runMode :beforeDate: 期间崩溃

转载 作者:技术小花猫 更新时间:2023-10-29 11:02:28 24 4
gpt4 key购买 nike

我的应用程序与 iOS5 b7 和 GM 版本的兼容性有问题。

问题出现在下一行代码中:

do {
[[NSRunLoop currentRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate distantFuture]];
} while (!done);

应用程序在一些迭代后崩溃并显示信号 EXC_BAD_ACCESS

通过的迭代次数是随机的(从 2 到 7)。

而且在 iOS4 和 iOS3 上一切都运行良好。

同样的问题出现在 Apple 的样本中:XMLPerformance Sample .

你怎么看这件事?

10 月 12 日,我的应用程序的数千名用户将升级到 iOS5,我不希望我的应用程序在 AppStore 中出现如此奇怪的错误。

最佳答案

4 小时过去了,我找到了问题所在。我将在 XMLPerformance sample 中描述我是如何解决这个问题的。

问题出在 NSAutoreleasePool 中。有 @property (nonatomic, assign) NSAutoreleasePool *downloadAndParsePool;。当应用程序开始下载 Top300 Paid Apps RSS 时,使用 [NSThread detachNewThreadSelector:@selector(downloadAndParse:) toTarget:self withObject:url]; 创建新线程。所以在那个线程中我们应该保留本地自动释放池。这是通过以下方式完成的:

- (void)downloadAndParse:(NSURL *)url {
self.downloadAndParsePool = [[NSAutoreleasePool alloc] init];

// initializing internet connection and libxml parser.
if (rssConnection != nil) {
do {
[[NSRunLoop currentRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate distantFuture]];
} while (!done);
}
// Release resources used only in this thread.
[downloadAndParsePool release];
self.downloadAndParsePool = nil;
}

所以在 downloadAndParse: 中一切看起来都很好。现在让我们看一下在解析 RSS 中的项目时调用的一种方法:

- (void)finishedCurrentSong {
// sending new item to delegate and other ...
countOfParsedSongs++;
// Periodically purge the autorelease pool. The frequency of this action may need to be tuned according to the
// size of the objects being parsed. The goal is to keep the autorelease pool from growing too large, but
// taking this action too frequently would be wasteful and reduce performance.
if (countOfParsedSongs == kAutoreleasePoolPurgeFrequency) {
[downloadAndParsePool release];
self.downloadAndParsePool = [[NSAutoreleasePool alloc] init];
countOfParsedSongs = 0;
}
}

如你所见,有几行:

[downloadAndParsePool release];
self.downloadAndParsePool = [[NSAutoreleasePool alloc] init];

正是那几行导致了异常。如果我评论它们,一切都会很好。

但我决定不仅要评论那几行,还要将 - (void)downloadAndParse:(NSURL *)url 中的 NSAutoreleasePool 替换为 @autorelease block ,因为据说它更有效:

- (void)downloadAndParse:(NSURL *)url {
@autoreleasepool {

// initializing internet connection and libxml parser.
if (rssConnection != nil) {
do {
[[NSRunLoop currentRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate distantFuture]];
} while (!done);
}
// Release resources used only in this thread.
}
}

现在一切正常。我还没有解决的唯一问题是:

// Periodically purge the autorelease pool. The frequency of this action may need to be tuned according to the 
// size of the objects being parsed. The goal is to keep the autorelease pool from growing too large, but
// taking this action too frequently would be wasteful and reduce performance.

因此,如果有人对此问题有任何想法,可以发布另一个答案,并且可能会尝试更正确地解释错误修复。我很乐意接受这个答案。

谢谢。

关于objective-c - iOS5 在 runMode :beforeDate: 期间崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7672359/

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