自定义NSOperation
Posted dashengios
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自定义NSOperation相关的知识,希望对你有一定的参考价值。
自定义操作:
-(void)customOperation
{
//创建队列
NSOperationQueue *queue = [[NSOperationQueue alloc]init];
//封装操作
XMGOperation *op = [[XMGOperation alloc]init];//自定义NSOperation,执行的任务在自定义类的main方法中执行。
//添加到队列
[queue addOperation:op];
self.queue = queue;
}
取消操作 [self.queue cancelAllOperations];
在自定义的XMGOperation中重写main方法,在main方法里执行需要的任务。 通过在该方法中判断
if (self.cancelled) {
return;
}
判断任务是否取消。
以上是关于自定义NSOperation的主要内容,如果未能解决你的问题,请参考以下文章