这是我的程序的一部分。按下按钮后,findDuplicates 中的循环在后台线程中开始。有没有办法通过按下另一个按钮来停止/杀死线程/循环?
- (IBAction)countDups:(id)sender {
[self performSelectorInBackground:@selector(findDuplicates) withObject:nil];
}
-(void)findDuplicates
{
...
for(int index=0;index<self.resultList.count;index++)
{ ... }
...
}