在iOS中,JSON的常見解析方案有4種 第三方框架:JSONKit,SBJson,TouchJSON(性能從左到右,越差) 蘋果原生(自帶):NSJSONSerialization(性能最好) JSON與OC的轉換 JSON->OC對象 用這個類對第一個參數data進行json解析, 第二個參數: ...
在iOS中,JSON的常見解析方案有4種
第三方框架:JSONKit,SBJson,TouchJSON(性能從左到右,越差)
蘋果原生(自帶):NSJSONSerialization(性能最好)
JSON與OC的轉換
JSON->OC對象
NSDictionary *dic = [NSJSONSerialization JSONObjectWithData:data options:kNilOptions error:&error];
用這個類對第一個參數data進行json解析,
第二個參數:操作:通常寫NSJSONReadingMutableContainers或者kNilOptions,後者效率最高,前者需要一個可變的容器
第三個參數:錯誤地址
OC對象->JSON
NSData *data = [NSJSONSerialization dataWithJSONObject:@{@"name":@"jack"}] options:NSJSONWritingPrettyPrinted error:nil];
如何想格式化JSON數據,可以將其寫入到plist文件中
//解析JSON NSDictionary *dict = [NSJSONSerialization JSONObjectWithData:data options:kNilOptions error:nil]; [dict writeToFile: @"/Users/DDZ/Desktop/data.plist" atomically:YES];