iOS多线程--NSOperation

时间:2022-10-15 19:55:36

NSOperation是基于GCD的一套多线程实现方案,和GCD一样,线程的生命周期是由系统来自动管理的,不用像NSThread和Pthread一样让程序员手动管理。相对于GCD来说,它更加地面向对象,并且比GCD多了一些更加简单实用的功能,另外,由于它的API是纯OC的,深受广大程序员喜爱,实用频率很高。

NSOperation主要和NSOperationQueue配合使用实现多线程,一般步骤如下:

1.先将需要执行的操作封装到一个NSOperation对象中;

2.然后将NSOperation对象添加到NSOperationQueue中;

3.系统会自动将NSOperationQueue中的NSOperation取出来;

4.将取出的NSOperation放到一条线程中执行。

注意:NSOperation是一个抽象类,并不具备封装操作的能力,必须使用它的子类。使用NSOperation子类的方式有如下三种:

1.NSInvocationOperation

2.NSBlockOperation

3.自定义子类继承NSOperation,实现内部相应的方法。

我们首先来看前两种:

一、NSOperation:

 - (void)viewDidLoad {
[super viewDidLoad];
[self invocationOperation];
} -(void)invocationOperation
{ // 1.创建操作对象,封住需要执行的任务
NSInvocationOperation *operation = [[NSInvocationOperation alloc] initWithTarget:self selector:@selector(download1) object:nil]; // 2.执行操作(默认情况下,如果操作没有放到操作队列中,同步执行)
[operation start];
} -(void)download1
{
NSLog(@"下载1----%@",[NSThread currentThread]);
}

结果如下:

iOS多线程--NSOperation

可以看出,默认情况下,如果操作没有放到操作队列中,会在主线程同步执行,只有讲NSOperation放到NSOperationQueue中才会异步执行。

二、NSBlockOperation

 - (void)viewDidLoad {
[super viewDidLoad];
[self blockOperation];
} - (void)blockOperation
{
NSBlockOperation *operation = [NSBlockOperation blockOperationWithBlock:^{
NSLog(@"NSBlockOperation--下载1---%@",[NSThread currentThread]);
}]; [operation addExecutionBlock:^{
NSLog(@"NSBlockOperation--下载2---%@",[NSThread currentThread]);
}]; [operation addExecutionBlock:^{
NSLog(@"NSBlockOperation--下载3---%@",[NSThread currentThread]);
}];
[operation start];
}

结果如图:

iOS多线程--NSOperation

我们会发现,NSBlockOperation当只有单个任务的时候,也是默认在主线程执行,当任务数大于1的时候,会开启子线程并发执行其它的操作

三、配合使用NSOperationQueue

 - (void)viewDidLoad {
[super viewDidLoad];
[self operationQueue];
} - (void)operationQueue
{
NSInvocationOperation *operation1 = [[NSInvocationOperation alloc] initWithTarget:self selector:@selector(download1) object:nil];
NSInvocationOperation *operation2 = [[NSInvocationOperation alloc] initWithTarget:self selector:@selector(download2) object:nil];
NSInvocationOperation *operation3 = [[NSInvocationOperation alloc] initWithTarget:self selector:@selector(download3) object:nil];
NSBlockOperation *operation4 = [NSBlockOperation blockOperationWithBlock:^{
NSLog(@"NSBlockOperation--1---%@",[NSThread currentThread]);
}];
[operation4 addExecutionBlock:^{
NSLog(@"NSBlockOperation--2---%@",[NSThread currentThread]);
}];
NSOperationQueue *queue = [[NSOperationQueue alloc] init];
[queue addOperation:operation1];
[queue addOperation:operation2];
[queue addOperation:operation3];
[queue addOperation:operation4];
}
-(void)download1
{
NSLog(@"下载1----%@",[NSThread currentThread]);
}
-(void)download2
{
NSLog(@"下载2----%@",[NSThread currentThread]);
}
-(void)download3
{
NSLog(@"下载3----%@",[NSThread currentThread]);
}

结果如下

iOS多线程--NSOperation

可以看出,只要是添加到NSOperationQueue中的操作,系统都会自动为我们开启子线程来执行,并且是并发无序的执行,和添加的顺序无关。

然而有些时候我们需要明确地指定操作的顺序,我们可以在NSOperation之间设置依赖来保证执行顺序。

比如操作1要在操作2后面执行,可以这么写:[operation1 addDependency:operation2] 意思是operation1依赖于operation2,也就是operation1要在operation2后面执行

上代码验证下:

 - (void)viewDidLoad {
[super viewDidLoad];
[self operationQueue];
} - (void)operationQueue
{
NSInvocationOperation *operation1 = [[NSInvocationOperation alloc] initWithTarget:self selector:@selector(download1) object:nil];
NSInvocationOperation *operation2 = [[NSInvocationOperation alloc] initWithTarget:self selector:@selector(download2) object:nil];
NSInvocationOperation *operation3 = [[NSInvocationOperation alloc] initWithTarget:self selector:@selector(download3) object:nil];
NSOperationQueue *queue = [[NSOperationQueue alloc] init];
[operation3 addDependency:operation1];
[operation1 addDependency:operation2];
[queue addOperation:operation1];
[queue addOperation:operation2];
[queue addOperation:operation3];
}
-(void)download1
{
NSLog(@"下载1----%@",[NSThread currentThread]);
}
-(void)download2
{
NSLog(@"下载2----%@",[NSThread currentThread]);
}
-(void)download3
{
NSLog(@"下载3----%@",[NSThread currentThread]);
}

结果如下:

iOS多线程--NSOperation

操作顺序Operation2->Operation1->Operation3,完全正确,其实就是谁依赖谁,谁就在它的后面执行

另外也可以在不同queue的NSOperation之间设置依赖

iOS多线程--NSOperation

操作顺序:4->3->2->1 其余两个并发执行

下面列出了NSOperationQueue的一些属性和方法:

1.- (void)cancelAllOperations 取消队列的所有操作。PS:也可以调用NSOperation的-(void)cancel方法取消单个操作

2.@property (getter=isSuspended) BOOL suspended;YES表示暂停队列,NO表示回复队列

3.@property NSInteger maxConcurrentOperationCount;表示最大并发数,一般不大于5

四、自定义NSOperation

当将自定义的NSOperation添加到NSOperationQueue的时候,系统会调用NSOperation的-(void)main方法,所以我们只要重写这个方法实现相应的实现即可。

 -(void)main
{
@autoreleasepool { // 异步线程无法访问主线程的自动释放池,需要自己添加
if (self.isCancelled) return;// 时刻监听操作是否取消,若取消就返回
NSURL *url = [NSURL URLWithString:self.matchUrl];
if (self.isCancelled) return;
NSData *data = [NSData dataWithContentsOfURL:url];
if (self.isCancelled) return;
UIImage *image = [UIImage imageWithData:data];
if ([_delegate respondsToSelector:@selector(operation:finshedDownloadImage:)]) {
dispatch_async(dispatch_get_main_queue(), ^{// 在主线程更新UI
[self.delegate operation:self finshedDownloadImage:image];
});
}
}
}

注意由于子线称无法访问主线程的自动释放池,所以需要自己添加。

下面是个小Demo截图,自定义NSOperation实现图片的异步下载,以及避免重复下载同一张图片

iOS多线程--NSOperation