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


    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];

     

  • 相关阅读:
    STM32 USART整理说明(转)
    C++ 如何初始化静态类成员
    scp、sftp和ftps
    PostGIS介绍
    string.h和strings.h的区别
    linux编程中的段错误
    Linux中的man命令
    undefinded reference to 'pthread_create'问题
    多核编程框架
    与ComboBox有相似行为的下拉控件的实现
  • 原文地址:https://www.cnblogs.com/konglei/p/4830549.html
Copyright © 2020-2023  润新知