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

NSData的同步下载与NSConnection的同步下载

时间:2015-09-22 21:56:40      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:

NSData 同步下载

    NSString * path = @"http://10.0.100.8/sns/my/user_list.php";
    
    //转网址对象
    NSURL * url = [NSURL URLWithString:path];
    
    //转Data
    NSData * data = [NSData dataWithContentsOfURL:url];
    
    if (data) {
         id obj = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableContainers error:nil];
        //这是一个同步请求  请求和响应在一起
        NSLog(@"%@",obj);
    }
    
    //同步下载会堵塞线程  主线程 --- 显示UI
    
    UIAlertView * alert = [[UIAlertView alloc]initWithTitle:@"进入主界面" message:nil delegate:nil cancelButtonTitle:nil otherButtonTitles:@"确定", nil];
    
    [alert show];

 

 

NSConnection 同步下载

 

    NSString * path = @"http://10.0.100.8/sns/my/user_list.php";
    
    //转网址对象
    NSURL * url = [NSURL URLWithString:path];
    
    //转Data
    NSData * data = [NSData dataWithContentsOfURL:url];
    
    if (data) {
         id obj = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableContainers error:nil];
        //这是一个同步请求  请求和响应一气呵成
        NSLog(@"%@",obj);
    }
    
    //同步下载会堵塞线程  主线程 --- 显示UI
    
    UIAlertView * alert = [[UIAlertView alloc]initWithTitle:@"进入主界面" message:nil delegate:nil cancelButtonTitle:nil otherButtonTitles:@"确定", nil];
    
    [alert show];

 

 

NSData的同步下载与NSConnection的同步下载

标签:

原文地址:http://www.cnblogs.com/konglei/p/4830549.html

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