我正在从后台线程执行几个步骤,在每个使用完成时更新 View :
[self performSelectorOnMainThreadselector(updateProgress) withObject:nil waitUntilDone:NO];
问题是如果用户关闭了这个 View 。后台线程继续运行,并在执行这些操作之一时使应用程序崩溃。如何判断线程是否已消失?
Best Answer-推荐答案 strong>
您打算在主线程或后台线程中运行方法 updateProgress 吗?这是一个简单的检查技巧。对于完整的证明,您应该使用 NSOperationQueue 而不是 performSelector
在你的 viewController 中合成这个 BOOL
BOOL isBackgroundThreadStop;
初始化为NO 相关的地方
self.isBackgroundThreadStop = NO;
当用户按下按钮关闭 View 时:
-(void)dismissView
{
self.isBackgroundThreadStop = YES;
[self dismissModalViewControllerWhatEver];
}
所以在你的方法中
-(void)updateProgress
{
if(!self.isBackgroundThreadStop){
//run program if background thread not stop
//it won't run if isBackgroundThreadStop is set to YES
}
}
关于ios - 如何判断主线程是否已消失?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/15001853/
|