我的代码:
NSOperationQueue *queue;
-(void)viewDidLoad
{
queue = [NSOperationQueue new];
NSOperation* loadImgOp = [[NSInvocationOperation alloc] initWithTarget:self selector:@selector(refresh) object:nil];
[queue addOperation:loadImgOp];
}
-(void)refresh
{
[self operationFirst];
[self operationSecond];
...
[self operationFive];
dispatch_async(dispatch_get_main_queue(), ^{
[self.tableView reloadData];
});
}
- (void)viewWillDisappear:(BOOL)animated {
[super viewWillDisappear:animated];
[queue cancelAllOperations];
}
当我调用新的ViewController时, - (void)刷新继续工作。 cancelAllOperations无效。
答案 0 :(得分:3)
您无法使用当前配置。您应该添加cancelled
属性并在整个方法中进行检查。
对队列调用cancel将操作标记为已取消并阻止新操作运行,但它不会终止正在运行的操作。它取决于每个操作来管理其取消。在那时它是一个调用,它不能做任何事情,因为它已经调用了目标方法。