日期:2014-05-16  浏览次数:20400 次

[转]xcode4.2.1 中使用 sbjson 的 3.1版本来解析json字符串

http://blog.csdn.net/remote_roamer/article/details/7021640

?

?

1,访问 SBJson的项目官网,并且下载?https://github.com/stig/json-framework/downloads

??? 注意:按照作者的说明,

SBJson v3.1alpha3 - source and API docs for Mac and iOS development, now with ARC support!

只有在3.1的版本上,才支持xcode 4.2中开启ARC的功能。所以我使用这个版本。

?

?

2.依然采用源代码编译的方式。把SBJson下载后解开的 目录中的classes目录拖拉到 项目中。

3.在项目的h文件中引入#import "SBJson.h"。不再使用#import "JSON.h"

4.测试用的json字符串是: {"userInfo":{"userName":"徐泽宇","sex":"男"}}

5.测试代码是 :

view plain
  1. //测试json的解析??
  2. -(void)testJsonParser:?(NSString?*)?jsonString??
  3. {??