中文字幕理论片,69视频免费在线观看,亚洲成人app,国产1级毛片,刘涛最大尺度戏视频,欧美亚洲美女视频,2021韩国美女仙女屋vip视频

打開(kāi)APP
userphoto
未登錄

開(kāi)通VIP,暢享免費(fèi)電子書(shū)等14項(xiàng)超值服

開(kāi)通VIP
IOS瘋狂基礎(chǔ)之多線程編程N(yùn)SThread

關(guān)于等待

            returnData=[[myhttp.resultsDictionaryvalueForKey:@"body"]valueForKey:@"list"];

            while (!returnData) {

                returnData = [[myhttp.resultsDictionaryvalueForKey:@"body"]valueForKey:@"list"];

                [[NSRunLoopcurrentRunLoop] runMode:NSDefaultRunLoopModebeforeDate:[NSDatedistantFuture]];

            }



 iOS有三種多線程編程的技術(shù),分別是:

1.、NSThread 

2、Cocoa NSOperation (iOS多線程編程之NSOperation和NSOperationQueue的使用

3、GCD  全稱(chēng):Grand Central Dispatch( iOS多線程編程之Grand Central Dispatch(GCD)介紹和使用

這三種編程方式從上到下,抽象度層次是從低到高的,抽象度越高的使用越簡(jiǎn)單,也是Apple最推薦使用的。


NSThread:

優(yōu)點(diǎn):NSThread 比其他兩個(gè)輕量級(jí)

缺點(diǎn):需要自己管理線程的生命周期,線程同步。線程同步對(duì)數(shù)據(jù)的加鎖會(huì)有一定的系統(tǒng)開(kāi)銷(xiāo)


NSThread 有兩種直接創(chuàng)建方式

//1.直接創(chuàng)建線程并且開(kāi)始運(yùn)行線程
[NSThread detachNewThreadSelector:@selector(doSomething:) toTarget:self withObject:nil];

//2.先創(chuàng)建線程對(duì)象,然后再運(yùn)行線程

NSThread* myThread = [[NSThread alloc] initWithTarget:self selector:@selector(doSomething:)  object:nil];  

[myThread start];  



  1. -(void)downloadImage:(NSString *) url{  
  2.     NSData *data = [[NSData alloc] initWithContentsOfURL:[NSURL URLWithString:url]];  
  3.     UIImage *image = [[UIImage alloc]initWithData:data];  
  4.     if(image == nil){  
  5.           
  6.     }else{  
  7. //通知主線程
  8.         [self performSelectorOnMainThread:@selector(updateUI:) withObject:image waitUntilDone:YES];  
  9.     }  

關(guān)于 waitUntilDone

- (void)changePopoverSize

{

    [self performSelectorOnMainThread:@selector(changeText:) withObject:@"Happy aha111" waitUntilDone:YES];

    NSLog(@"changePopoverSize#####end");

    sleep(5);

    NSLog(@"changePopoverSize-----end");

}

執(zhí)行結(jié)果如下:


2012-08-17 17:19:29.618 awrbv[2024:f803] changeText:(NSString *)string

2012-08-17 17:19:29.619 awrbv[2024:f803] changePopoverSize#####end

2012-08-17 17:19:34.620 awrbv[2024:f803] changePopoverSize-----end

可以看出,如果waitUntilDone:YES那么等changeText執(zhí)行完畢后再往下執(zhí)行

如果waitUntilDone:NO的話,結(jié)果如下:


2012-08-17 17:21:12.135 awrbv[2049:f803] changePopoverSize#####end

2012-08-17 17:21:17.137 awrbv[2049:f803] changePopoverSize-----end

2012-08-17 17:21:17.139 awrbv[2049:f803] changeText:(NSString *)string



本站僅提供存儲(chǔ)服務(wù),所有內(nèi)容均由用戶(hù)發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊舉報(bào)
打開(kāi)APP,閱讀全文并永久保存 查看更多類(lèi)似文章
猜你喜歡
類(lèi)似文章
[Cocoa]深入淺出 Cocoa 之多線程 NSThread
iOS多線程pthread與NSTread
IOS多線程編程步驟詳解
NSThread 停止線程
iOS多線程開(kāi)發(fā) NSThread
IOS 線程處理 子線程的啟動(dòng)與結(jié)束
更多類(lèi)似文章 >>
生活服務(wù)
熱點(diǎn)新聞
分享 收藏 導(dǎo)長(zhǎng)圖 關(guān)注 下載文章
綁定賬號(hào)成功
后續(xù)可登錄賬號(hào)暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點(diǎn)擊這里聯(lián)系客服!

聯(lián)系客服