• iOS中NSJSONSerialization的使用 小记


         初接触的Json解析就是这个,因为觉得简单好用,解析效率还高,所以要进行Json数据解析,NSJSONSerialization真的是不二之选,下面简单的附上我的代码吧~

        NSError *error;

        NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:@"http://192.168.1.122:8080/app/common/focus/4"]];

        NSData *response = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil];

        NSArray *imgarr = [NSJSONSerialization JSONObjectWithData:response options:NSJSONReadingMutableLeaves error:&error];

        

        NSLog(@"%@",imgarr);

        img = [[NSMutableArray alloc]init];

        for (int i = 0; i<[imgarr count]; i++) {

            NSDictionary *imgDic = [imgarr objectAtIndex:i];

            NSString *imgstr = (NSString*)[imgDic objectForKey:@"imgsrc"];

            NSString *port = @"http://192.168.1.122:8080";//

            NSString *imgstr1 = [port stringByAppendingString:imgstr];

            [img addObject:imgstr1];

        }

        

        NSLog(@"%@",img);

    现在img数组里的存放的就是我的图片url了~~简单吧~就几行代码

  • 相关阅读:
    DRF JWT认证基础
    Shell简单脚本
    DockerFile案例
    Shell基础知识
    DockerFile基础知识
    tensorflow
    使用cv2将图片分割成相等的部分
    序列化心得
    python正则化表达式
    python--匿名函数(lambda)
  • 原文地址:https://www.cnblogs.com/ruixin2222/p/4763431.html
Copyright © 2020-2023  润新知