码迷,mamicode.com
首页 > 其他好文 > 详细

performSelectorOnMainThread

时间:2014-06-04 20:50:55      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:c   a   http   int   使用   数据   

[selfperformSelectorOnMainThread:@selector(fetchedData:) withObject:datawaitUntilDone:YES];

会创建一个新的线程实行fetchedData函数,并传入参数data,并且会等待函数退出后再继续执行。

 

- (void)fetchedData:(NSData *)responseData {

......

}

 

在多线程操作中,有一个著名的错误,叫做“Tried to obtain the web lock from a thread other than the main thread or the web thread. This may be a result of calling to UIKit from a secondary thread”,一旦出现这个错误,程序会立即crashed。

这是由于,apple不允许程序员在主线程以外的线程中对ui进行操作(Bug?)

而笔者在一次http异步操作中也出现过这个错误。当时使用了NSOperation进行了http异步请求,然后使用kvo模式注册观察者,当数据下载完毕后,在主线程中接收下载完毕的通知,并在observeValueForKeyPath方法中使用[tableview reloadData]更新UI。

这样也导致了上述错误。

 

解决的方法是使用performSelectorOnMainThread进行ui的更新:

[self performSelectorOnMainThread:@selector(refresh) withObject:nil waitUntilDone:NO];

performSelectorOnMainThread,布布扣,bubuko.com

performSelectorOnMainThread

标签:c   a   http   int   使用   数据   

原文地址:http://www.cnblogs.com/clumsy1006/p/3759428.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!