簡介:
1、NSOperation是蘋果對GCD的一個面向對象的封裝,是OC的
2、NSOperation同時提供了一些GCD不是特別容易實現的功能
3、將操作添加到隊列,操作會被立即”異步“執行
4、NSOperation是個抽象的類,并不具備封裝操作的能力,必須使用它的子類
1>NSInvocationOperation
2>NSBlockOperation
3>自定義類繼承NSOperation,實現內部的方法
代碼實現:
示例1:NSInvocationOperation
@interface TBViewController ()
@PRoperty(nonatomic,strong)NSOperation *myQueue;
@end
//懶加載
-(NSOperationQueue *)myQueue
{
if(_myQueue == nil){
_myQueue =[ [NSOperationQueue alloc]init];
}
return _myQueue;
}
-(void)touchesBegan:(NSSer *)touches withEvent:(UIEvent *)event
{
[self opDemo1];
}
-(void)opDemo1
{
//操作
NSInvocationOperation *op =[ [NSInvocationOperation alloc]initWithTarget:self selector:@selector(downLoadImage) object:nil];
//讓操作啟動,如果使用start方法,會在當前線程執行操作
// [op start];
//將操作添加到隊列,操作會立即被“異步”執行
[self.myQueue addOperation:op];
}
//下載圖像
-(void)downLoadImage
{
NSLog(@"下載圖像:%@",[NSThread currentThread]);
}
示例2:NSBlockOperation
//NSOperationQueue 實例化的對象是并發隊列
-(void)touchesBegan:(NSSer *)touches withEvent:(UIEvent *)event
{
[self opDemo1];
}
-(void)opDemo2
{
//操作
for(int i = 0;i < 10; i ++)
{
NSBlockOperation *op = [NSBlockOperation blockOperationWithBlock:^{
NSLog(@"block ===%@",[NSThread currentThread]);
}];
//添加到隊列 通過運行可以看到是”并發“隊列
[self.myQueue addOperation:op];
}
}
示例3:直接添加block
-(void)touchesBegan:(NSSer *)touches withEvent:(UIEvent *)event
{
[self opDemo3];
}
-(void)opDemo3
{
for(int i = 0; i < 10; i++)
{
[self .myQueue addOperationWithBlock:^{
NSLog(@"===== %@",[NSThread currentThread]);
}];
}
}
示例4:線程間的通訊
-(void)touchesBegan:(NSSer *)touches withEvent:(UIEvent *)event
{
[self opDemo4];
}
-(void)opDemo4
{
[self.myQueue addOperationWithBlock:^{
NSLog(@"下載圖像:%@",[NSThread currentThread]);
//下載完成需要更新UI,mainQueue 主隊列
[[NSOperationQueue mainQueue] addOperationWithBlock:^{
NSLog(@"main %@",[NSThread currentThread]);
}];
}];
}
新聞熱點
疑難解答