码迷,mamicode.com
首页 > 移动开发 > 详细

【代码笔记】iOS-GCD用法

时间:2017-04-12 09:42:15      阅读:241      评论:0      收藏:0      [点我收藏+]

标签:http   img   class   with   技术   too   utf8   font   分享   

代码:

技术分享
- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view.
    
    //GCD的用法
    dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
        
        NSURL * url = [NSURL URLWithString:@"http://www.baidu.com"];
        NSError * error;
        NSString * data = [NSString stringWithContentsOfURL:url encoding:NSUTF8StringEncoding error:&error];
        if (data != nil) {
            dispatch_async(dispatch_get_main_queue(), ^{
                NSLog(@"call back, the data is: %@", data);
            });
        } else {
            NSLog(@"error when download:%@", error);
        }
    });
    
    
}
技术分享

 

【代码笔记】iOS-GCD用法

标签:http   img   class   with   技术   too   utf8   font   分享   

原文地址:http://www.cnblogs.com/yang-guang-girl/p/6697466.html

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