1. NSOperation基本使用
(1)相關(guān)概念
01 NSOperation是對GCD的包裝
02 兩個核心概念【隊列+操作】
(2)基本使用
01 NSOperation本身是抽象類镐侯,只能只有它的子類
02 三個子類分別是:NSBlockOperation先誉、NSInvocationOperation以及自定義繼承自NSOperation的類
03 NSOperation和NSOperationQueue結(jié)合使用實現(xiàn)多線程并發(fā)
(3)相關(guān)代碼
// 01 NSInvocationOperation
//1.封裝操作
/*
第一個參數(shù):目標對象
第二個參數(shù):該操作要調(diào)用的方法,最多接受一個參數(shù)
第三個參數(shù):調(diào)用方法傳遞的參數(shù)贝润,如果方法不接受參數(shù),那么該值傳nil
*/
NSInvocationOperation *operation = [[NSInvocationOperation alloc]initWithTarget:self selector:@selector(run) object:nil];
//2.啟動操作
[operation start];
-------------------------------------------------
// 02 NSBlockOperation
//1.封裝操作
/*
NSBlockOperation提供了一個類方法狱掂,在該類方法中封裝操作
*/
NSBlockOperation *operation = [NSBlockOperation blockOperationWithBlock:^{
//在主線程中執(zhí)行
NSLog(@"---download1--%@",[NSThread currentThread]);
}];
//2.追加操作倦西,追加的操作在子線程中執(zhí)行
[operation addExecutionBlock:^{
NSLog(@"---download2--%@",[NSThread currentThread]);
}];
[operation addExecutionBlock:^{
NSLog(@"---download3--%@",[NSThread currentThread]);
}];
//3.啟動執(zhí)行操作
[operation start];
----------------------------------------------
// 03 自定義NSOperation
//如何封裝操作?
//自定義的NSOperation,通過重寫內(nèi)部的main方法實現(xiàn)封裝操作
-(void)main
{
NSLog(@"--main--%@",[NSThread currentThread]);
}
//如何使用雏节?
//1.實例化一個自定義操作對象
AZOperation *op = [[AZOperation alloc]init];
//2.執(zhí)行操作
[op start];
2. NSOperationQueue基本使用
(1)NSOperation中的兩種隊列
01 主隊列 通過mainQueue獲得,凡是放到主隊列中的任務(wù)都將在主線程執(zhí)行
02 非主隊列 直接alloc init出來的隊列高职。非主隊列同時具備了并發(fā)和串行的功能钩乍,通過設(shè)置最大并發(fā)數(shù)屬性來控制任務(wù)是并發(fā)執(zhí)行還是串行執(zhí)行
(2)相關(guān)代碼
//自定義NSOperation
-(void)customOperation
{
//1.創(chuàng)建隊列
NSOperationQueue *queue = [[NSOperationQueue alloc]init];
//2.封裝操作
//好處:1.信息隱蔽
//2.代碼復用
AZOperation *op1 = [[AZOperation alloc]init];
AZOperation *op2 = [[AZOperation alloc]init];
//3.添加操作到隊列中
[queue addOperation:op1];
[queue addOperation:op2];
}
//NSBlockOperation
- (void)block
{
//1.創(chuàng)建隊列
NSOperationQueue *queue = [[NSOperationQueue alloc]init];
//2.封裝操作
NSBlockOperation *op1 = [NSBlockOperation blockOperationWithBlock:^{
NSLog(@"1----%@",[NSThread currentThread]);
}];
NSBlockOperation *op2 = [NSBlockOperation blockOperationWithBlock:^{
NSLog(@"2----%@",[NSThread currentThread]);
}];
[op2 addExecutionBlock:^{
NSLog(@"3----%@",[NSThread currentThread]);
}];
[op2 addExecutionBlock:^{
NSLog(@"4----%@",[NSThread currentThread]);
}];
//3.添加操作到隊列中
[queue addOperation:op1];
[queue addOperation:op2];
//補充:簡便方法
[queue addOperationWithBlock:^{
NSLog(@"5----%@",[NSThread currentThread]);
}];
}
//NSInvocationOperation
- (void)invocation
{
/*
GCD中的隊列:
串行隊列:自己創(chuàng)建的,主隊列
并發(fā)隊列:自己創(chuàng)建的怔锌,全局并發(fā)隊列
NSOperationQueue
主隊列:[NSOperationQueue mainqueue];凡是放在主隊列中的操作都在主線程中執(zhí)行
非主隊列:[[NSOperationQueue alloc]init]寥粹,并發(fā)和串行变过,默認是并發(fā)執(zhí)行的
*/
//1.創(chuàng)建隊列
NSOperationQueue *queue = [[NSOperationQueue alloc]init];
//2.封裝操作
NSInvocationOperation *op1 = [[NSInvocationOperation alloc]initWithTarget:self selector:@selector(download1) object:nil];
NSInvocationOperation *op2 = [[NSInvocationOperation alloc]initWithTarget:self selector:@selector(download2) object:nil];
NSInvocationOperation *op3 = [[NSInvocationOperation alloc]initWithTarget:self selector:@selector(download3) object:nil];
//3.把封裝好的操作添加到隊列中
[queue addOperation:op1];//[op1 start]
[queue addOperation:op2];
[queue addOperation:op3];
}
3. NSOperation其它用法
(1)設(shè)置最大并發(fā)數(shù)【控制任務(wù)并發(fā)和串行】
//1.創(chuàng)建隊列
NSOperationQueue *queue = [[NSOperationQueue alloc]init];
//2.設(shè)置最大并發(fā)數(shù)
//注意點:該屬性需要在任務(wù)添加到隊列中之前進行設(shè)置
//該屬性控制隊列是串行執(zhí)行還是并發(fā)執(zhí)行
//如果最大并發(fā)數(shù)等于1,那么該隊列是串行的涝涤,如果大于1那么是并行的
//系統(tǒng)的最大并發(fā)數(shù)有個默認的值媚狰,為-1,如果該屬性設(shè)置為0阔拳,那么不會執(zhí)行任何任務(wù)
queue.maxConcurrentOperationCount = 2;
(2)暫停和恢復以及取消
//設(shè)置暫停和恢復
//suspended設(shè)置為YES表示暫停崭孤,suspended設(shè)置為NO表示恢復
//暫停表示不繼續(xù)執(zhí)行隊列中的下一個任務(wù),暫停操作是可以恢復的
if (self.queue.isSuspended) {
self.queue.suspended = NO;
}else
{
self.queue.suspended = YES;
}
//取消隊列里面的所有操作
//取消之后糊肠,當前正在執(zhí)行的操作的下一個操作將不再執(zhí)行辨宠,而且永遠都不在執(zhí)行,就像后面的所有任務(wù)都從隊列里面移除了一樣
//取消操作是不可以恢復的
[self.queue cancelAllOperations];
---------自定義NSOperation取消操作--------------------------
-(void)main
{
//耗時操作1
for (int i = 0; i<1000; i++) {
NSLog(@"任務(wù)1-%d--%@",i,[NSThread currentThread]);
}
NSLog(@"+++++++++++++++++++++++++++++++++");
//蘋果官方建議罪针,每當執(zhí)行完一次耗時操作之后彭羹,就查看一下當前隊列是否為取消狀態(tài)黄伊,如果是泪酱,那么就直接退出
//好處是可以提高程序的性能
if (self.isCancelled) {
return;
}
//耗時操作2
for (int i = 0; i<1000; i++) {
NSLog(@"任務(wù)1-%d--%@",i,[NSThread currentThread]);
}
NSLog(@"+++++++++++++++++++++++++++++++++");
}
4. NSOperation實現(xiàn)線程間通信
(1)開子線程下載圖片
//1.創(chuàng)建隊列
NSOperationQueue *queue = [[NSOperationQueue alloc]init];
//2.使用簡便方法封裝操作并添加到隊列中
[queue addOperationWithBlock:^{
//3.在該block中下載圖片
NSURL *url = [NSURL URLWithString:@"http://news.51sheyuan.com/uploads/allimg/111001/133442IB-2.jpg"];
NSData *data = [NSData dataWithContentsOfURL:url];
UIImage *image = [UIImage imageWithData:data];
NSLog(@"下載圖片操作--%@",[NSThread currentThread]);
//4.回到主線程刷新UI
[[NSOperationQueue mainQueue] addOperationWithBlock:^{
self.imageView.image = image;
NSLog(@"刷新UI操作---%@",[NSThread currentThread]);
}];
}];
(2)下載多張圖片合成綜合案例(設(shè)置操作依賴)
//02 綜合案例
- (void)download2
{
NSLog(@"----");
//1.創(chuàng)建隊列
NSOperationQueue *queue = [[NSOperationQueue alloc]init];
//2.封裝操作下載圖片1
NSBlockOperation *op1 = [NSBlockOperation blockOperationWithBlock:^{
NSURL *url = [NSURL URLWithString:@"http://h.hiphotos.baidu.com/zhidao/pic/item/6a63f6246b600c3320b14bb3184c510fd8f9a185.jpg"];
NSData *data = [NSData dataWithContentsOfURL:url];
//拿到圖片數(shù)據(jù)
self.image1 = [UIImage imageWithData:data];
}];
//3.封裝操作下載圖片2
NSBlockOperation *op2 = [NSBlockOperation blockOperationWithBlock:^{
NSURL *url = [NSURL URLWithString:@"http://pic.58pic.com/58pic/13/87/82/27Q58PICYje_1024.jpg"];
NSData *data = [NSData dataWithContentsOfURL:url];
//拿到圖片數(shù)據(jù)
self.image2 = [UIImage imageWithData:data];
}];
//4.合成圖片
NSBlockOperation *combine = [NSBlockOperation blockOperationWithBlock:^{
//4.1 開啟圖形上下文
UIGraphicsBeginImageContext(CGSizeMake(200, 200));
//4.2 畫image1
[self.image1 drawInRect:CGRectMake(0, 0, 200, 100)];
//4.3 畫image2
[self.image2 drawInRect:CGRectMake(0, 100, 200, 100)];
//4.4 根據(jù)圖形上下文拿到圖片數(shù)據(jù)
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
// NSLog(@"%@",image);
//4.5 關(guān)閉圖形上下文
UIGraphicsEndImageContext();
//7.回到主線程刷新UI
[[NSOperationQueue mainQueue]addOperationWithBlock:^{
self.imageView.image = image;
NSLog(@"刷新UI---%@",[NSThread currentThread]);
}];
}];
//5.設(shè)置操作依賴
[combine addDependency:op1];
[combine addDependency:op2];
//6.添加操作到隊列中執(zhí)行
[queue addOperation:op1];
[queue addOperation:op2];
[queue addOperation:combine];
}