JSON数据反序列化(解析)

来源:互联网 发布:dota2淘宝黑货多吗 编辑:程序博客网 时间:2024/06/01 08:22

#import "ViewController.h"


@interface ViewController ()


@end


@implementation ViewController


- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{

    

    // 1. url

    NSURL *url = [NSURLURLWithString:@"http://127.0.0.1/videos.json"];

    

    // 2. 请求

    NSURLRequest *request = [NSURLRequestrequestWithURL:url];

    

    // 3. 连接

    [NSURLConnectionsendAsynchronousRequest:request queue:[NSOperationQueuemainQueue] completionHandler:^(NSURLResponse *response,NSData *data, NSError *connectionError) {

        

        /**

         NSJSONReadingMutableContainers = (1UL << 0),容器是可变的,转成的结果是可变的类型

         NSJSONReadingMutableLeaves = (1UL << 1),    叶子节点是可变的

         NSJSONReadingAllowFragments = (1UL << 2)    允许根节点 可以不是NSArrayNSDictionary

         枚举类型,一般使用位移的,传0,什么事情都不做

         */

        id result = [NSJSONSerializationJSONObjectWithData:data options:NSJSONReadingMutableContainerserror:NULL];

        

        NSLog(@"result = %@---%@", result, [resultclass]);

    }];

    

    

}


@end

0 0
原创粉丝点击