标签:
JSON 介绍
JSON 本质上,就是一个"特殊格式"的字符串
JSON 语法规则
JSON 值
序列化 & 反序列化
JSON 反序列化
NSURL *url = [NSURL URLWithString:@"http://www.weather.com.cn/adat/sk/101010100.html"];
id result = [NSJSONSerialization JSONObjectWithData:data options:0 error:NULL];
NSLog(@"%@ %@", result, [result class]);
选项 |
说明 |
NSJSONReadingMutableContainers = (1UL << 0) |
容器可变 |
NSJSONReadingMutableLeaves = (1UL << 1) |
叶子可变 |
NSJSONReadingAllowFragments = (1UL << 2) |
顶级节点可以不是 NSArray 或者 NSDictionary |
选项选择 0,表示任何附加操作都不做,效率最高!
NSJSONSerialization 类
标签:
原文地址:http://www.cnblogs.com/fakeCoder/p/5093798.html