前端之家收集整理的这篇文章主要介绍了
SBJSON的使用,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
- // SBJson的代码下载
- // https://github.com/zgGitHub?tab=repositories
-
- NSString*jsonStr=@"{\"name\":\"jia\",\"age\":\"24\"}";
- NSString*jsonStr2=@"[\"1\",\"2\"]";
-
- SBJsonParser*jsonParser=[[SBJsonParseralloc]init];
- NSMutableDictionary*dict=[jsonParserobjectWithString:jsonStr];
- NSLog(@"%@",dict);
-
- NSMutableArray*arr=[jsonParserobjectWithString:jsonStr2];
- NSLog(@"%@",arr);
- [jsonParserrelease];
- 无论是数组还是字典都用 objectWithString来解析
原文链接:https://www.f2er.com/json/289632.html