码迷,mamicode.com
首页 > 其他好文 > 详细

自定义NSOperation

时间:2019-02-23 00:51:04      阅读:239      评论:0      收藏:0      [点我收藏+]

标签:turn   led   方法   nbsp   style   convert   ati   需要   执行   

自定义操作:

-(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

标签:turn   led   方法   nbsp   style   convert   ati   需要   执行   

原文地址:https://www.cnblogs.com/dashengios/p/10421297.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!