我正在开发由其他人设计的应用程序。该应用程序充满了这样的调用:
[NSThread detachNewThreadSelector:@selector(loadPhotoImage) toTarget:self withObject:nil];
和
DownloadPhotoThread *thread = [[DownloadPhotoThread alloc] initWithFriendArray:_friendsList delegate:self];
[self.arrDownloadThreads addObject:thread];
[thread start];
随机我会遇到整个 ui 锁定,手机/模拟器不再响应触摸的情况。需要明确的是,该设备永远不会解冻。如果我在调试会话期间点击暂停,我会看到一个线程位于 start 或 detachNewThreadSelector 行上。
今天,当这些锁定发生时,我能够缩小原因。我刚刚添加了 Zendesk 表单控制器(在这里找到:https ://github.com/zendesk/zendesk_ios_sdk/blob/master/DropboxSampleApp/FormViewController.m )
其中有这个代码:
- (void) textViewDidChange:(UITextView *)textView
{
[self.tableView beginUpdates];
[self.tableView endUpdates];
}
- (CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
if (indexPath.row > 1) {
CGSize s = [description sizeThatFits:CGSizeMake(description.frame.size.width, 10000)];
float dh = MAX(s.height, 115);
description.frame = CGRectMake(description.frame.origin.x,
description.frame.origin.y,
description.frame.size.width,
dh);
return dh;
}
return 44.0;
}
我可以通过键入一个字符并在此文本框中一遍又一遍地返回来轻松重现锁定条件。(这会调整表格视图的高度)
在某些情况下,我可以通过使用 dispatch_async() 块包装违规者来防止锁定条件,如下所示:
DownloadPhotoThread *thread = [[DownloadPhotoThread alloc] initWithFriendArray:_friendsList delegate:self];
[self.arrDownloadThreads addObject:thread];
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
[thread start];
});
但在其他情况下,我不能,因为有问题的代码位于复杂的库中,例如 ASIHTTPRequest 或 XMPPFramework。你对这里到底发生了什么有什么建议吗?
另一件事。当我在这种情况下暂停时,这就是主线程所说的:
Thread 1
com.apple.main-thread
0 objc_msgSend
....
25 UIApplicationMain
26 main
暂停和取消暂停总是会在 objc_msgSend 中的某个汇编指令中找到 main。
感谢您的帮助,因为我在这里很困惑。