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

NSThread

时间:2015-11-16 14:06:48      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:

NSThread相对于gcd和nsoperation来说偏向于底层,有时候会用到它的一些方法,比如长时间等待一个线程,或者频繁使用的时候

  [NSThread sleepForTimeInterval:2];//让线程睡两秒
    [NSThread sleepUntilDate:[NSDate date]];//让线程睡到指定的日期点
    //用NSThread新建子线程
    [NSThread detachNewThreadSelector:@selector(go) toTarget:self withObject:nil];


-(void)go
{
    NSLog(@"%@",[NSThread currentThread]);
    NSData *data = [[NSData alloc]initWithContentsOfURL:[NSURL URLWithString:@"http://d.hiphotos.baidu.com/image/pic/item/9922720e0cf3d7ca60432a7df41fbe096b63a907.jpg"]];
    dispatch_async(dispatch_get_main_queue(), ^{
        _imageback2.image = [UIImage imageWithData:data];
    });
}

 

NSThread

标签:

原文地址:http://www.cnblogs.com/moxuexiaotong/p/4968629.html

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