IOS多線程之NSOperation

來源:互聯網
上載者:User

標籤:

一、並發數(1)並發數:同時執?行的任務數.比如,同時開3個線程執行3個任務,並發數就是3(2)最大並發數:同一時間最多隻能執行的任務的個數。(3)最?大並發數的相關?方法- (NSInteger)maxConcurrentOperationCount;
- (void)setMaxConcurrentOperationCount:(NSInteger)cnt; 說明:如果沒有設定最大並發數,那麼並發的個數是由系統記憶體和CPU決定的,可能記憶體多久開多一點,記憶體少就開少一點。注意:num的值並不代表線程的個數,僅僅代表線程的ID。提示:最大並發數不要亂寫(5以內),不要開太多,一般以2~3為宜,因為雖然任務是在子線程進行處理的,但是cpu處理這些過多的子線程可能會影響UI,讓UI變卡。  二、隊列的取消,暫停和恢複

 (1)取消隊列的所有操作

 - (void)cancelAllOperations;

提?:也可以調用NSOperation的- (void)cancel?法取消單個操作

 (2)暫停和恢複隊列

- (void)setSuspended:(BOOL)b; // YES代表暫停隊列,NO代表恢複隊列

- (BOOL)isSuspended; //目前狀態

(3)暫停和恢複的適用場合:在tableview介面,開線程下載遠端網路介面,對UI會有影響,使使用者體驗變差。那麼這種情況,就可以設定在使用者操作UI(如滾動螢幕)的時候,暫停隊列(不是取消隊列),停止滾動的時候,恢複隊列。  三、操作優先順序

 (1)設定NSOperation在queue中的優先順序,可以改變操作的執?優先順序

- (NSOperationQueuePriority)queuePriority;
- (void)setQueuePriority:(NSOperationQueuePriority)p;

 (2)優先順序的取值

NSOperationQueuePriorityVeryLow = -8L,

NSOperationQueuePriorityLow = -4L,

NSOperationQueuePriorityNormal = 0,

NSOperationQueuePriorityHigh = 4,

NSOperationQueuePriorityVeryHigh = 8 

說明:優先順序高的任務,調用的幾率會更大。

 

四、操作依賴

(1)NSOperation之間可以設定依賴來保證執行順序,?如一定要讓操作A執行完後,才能執行操作B,可以像下面這麼寫

[operationB addDependency:operationA]; // 操作B依賴於操作

(2)可以在不同queue的NSOperation之間建立依賴關係 

注意:不能循環相依性(不能A依賴於B,B又依賴於A)。

(3)程式碼範例

 1 #import "YYViewController.h" 2  3 @interface YYViewController () 4  5 @end 6  7 @implementation YYViewController 8  9 - (void)viewDidLoad10 {11     [super viewDidLoad];12 13     //建立NSInvocationOperation對象,封裝操作14     NSInvocationOperation *operation1=[[NSInvocationOperation alloc]initWithTarget:self selector:@selector(test1) object:nil];15     NSInvocationOperation *operation2=[[NSInvocationOperation alloc]initWithTarget:self selector:@selector(test2) object:nil];16     //建立對象,封裝操作17     NSBlockOperation *operation3=[NSBlockOperation blockOperationWithBlock:^{18         for (int i=0; i<5; i++) {19             NSLog(@"NSBlockOperation3--1----%@",[NSThread currentThread]);20         }21     }];22     [operation3 addExecutionBlock:^{23         for (int i=0; i<5; i++) {24         NSLog(@"NSBlockOperation3--2----%@",[NSThread currentThread]);25         }26     }];27     28     //設定作業依賴29     //先執行operation2,再執行operation1,最後執行operation330     [operation3 addDependency:operation1];31     [operation1 addDependency:operation2];32     33     //不能是相互依賴34 //    [operation3 addDependency:operation1];35 //    [operation1 addDependency:operation3];36     37     //建立NSOperationQueue38     NSOperationQueue * queue=[[NSOperationQueue alloc]init];39     //把操作添加到隊列中40     [queue addOperation:operation1];41     [queue addOperation:operation2];42     [queue addOperation:operation3];43 }44 45 -(void)test146 {47     for (int i=0; i<5; i++) {48     NSLog(@"NSInvocationOperation--test1--%@",[NSThread currentThread]);49     }50 }51 52 -(void)test253 {54     for (int i=0; i<5; i++) {55     NSLog(@"NSInvocationOperation--test2--%@",[NSThread currentThread]);56     }57 }58 59 @end
 列印查看:A做完再做B,B做完才做C。注意:一定要在添加之前,進行設定。提示:任務添加的順序並不能夠決定執行順序,執行的順序取決於依賴。使用Operation的目的就是為了讓開發人員不再關心線程。  5.操作的監聽

可以監聽一個操作的執行完畢

- (void (^)(void))completionBlock;
- (void)setCompletionBlock:(void (^)(void))block; 

程式碼範例

第一種方式:可以直接跟在任務後面編寫需要完成的操作,如這裡在下載圖片後,緊跟著下載第二張圖片。但是這種寫法有的時候把兩個不相關的操作寫到了一個代碼塊中,代碼的可閱讀性不強。

 1 #import "YYViewController.h" 2  3 @interface YYViewController () 4  5 @end 6  7 @implementation YYViewController 8  9 - (void)viewDidLoad10 {11     [super viewDidLoad];12 13     //建立對象,封裝操作14     NSBlockOperation *operation=[NSBlockOperation blockOperationWithBlock:^{15         NSLog(@"-operation-下載圖片-%@",[NSThread currentThread]);16         //.....下載圖片後繼續進行的操作17         NSLog(@"--接著下載第二張圖片--");18     }];19     20     //建立隊列21     NSOperationQueue *queue=[[NSOperationQueue alloc]init];22     //把任務添加到隊列中(自動執行,自動開線程)23     [queue addOperation:operation];24 }25 26 @end

第二種方式:

 1 #import "YYViewController.h" 2  3 @interface YYViewController () 4  5 @end 6  7 @implementation YYViewController 8  9 - (void)viewDidLoad10 {11     [super viewDidLoad];12 13     //建立對象,封裝操作14     NSBlockOperation *operation=[NSBlockOperation blockOperationWithBlock:^{15         for (int i=0; i<10; i++) {16             NSLog(@"-operation-下載圖片-%@",[NSThread currentThread]);17         }18     }];19     20     //監聽操作的執行完畢21     operation.completionBlock=^{22         //.....下載圖片後繼續進行的操作23         NSLog(@"--接著下載第二張圖片--");24     };25     26     //建立隊列27     NSOperationQueue *queue=[[NSOperationQueue alloc]init];28     //把任務添加到隊列中(自動執行,自動開線程)29     [queue addOperation:operation];30 }31 32 @end

列印查看:

說明:在上一個任務執行完後,會執行operation.completionBlock=^{}程式碼片段,且是在當前線程執行(2)。

 

原文地址http://www.cnblogs.com/wendingding/p/3809150.html

IOS多線程之NSOperation

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.