码迷,mamicode.com
首页 > Web开发 > 详细

JSONKit 简单使用

时间:2014-11-20 18:38:41      阅读:253      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   使用   sp   on   

 

http://blog.csdn.net/l_ch_g/article/details/8477187

 

例子上写的比较浅显易懂, 不过我还是稍微总结一下:

导入JSONKit.h之后

字符串转NSDictionary:  使用NSData对象方法 [nsDataObj objectFromJSONData]; 转化为NSData

NSDictionary转字符串: 使用NSDictionary的 [nsDictObj JSONData] 转化成NSData

 

 

导入JSONKIT和dylib

将json转换为NSDictionary

    NSString *string =@"{\"name\": \"My Name\",\"list\": [\"one\",\"two\",\"three\"]}";

    NSData* jsonData = [stringdataUsingEncoding:NSUTF8StringEncoding];

   NSDictionary *resultsDictionary = [jsonDataobjectFromJSONData];

   NSLog(@"55----%@",resultsDictionary);

将NSDictionary转换为 json格式的string
//resultsDictionary是需要转换的dictionary
 
NSString *string = [[NSString alloc] initWithData:[resultsDictionary JSONData] encoding:NSUTF8StringEncoding];  

 

 
 
 

JSONKit 简单使用

标签:style   blog   http   io   ar   color   使用   sp   on   

原文地址:http://www.cnblogs.com/apem/p/4111111.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!