所以,我正在使用 NSOperationQueue 的方法,我想在操作代码中的点上进行addOperationWithBlock^{}
细粒度的属性检查。isCancelled
如何获取将在此块中运行的操作实例?
例如,这是我的代码片段:
[operationQueueInstance addOperationWithBlock:^{
if (!???.isCancelled){
NSlog(@"Instruction 1");
}
if (!???.isCancelled){
NSlog(@"Instruction 2");
}
NSlog(@"Instruction 3");
}];
如何获取此块将运行的操作实例,以便我可以评估isCancelled
指令的属性?
TIA