转自:http://blog.sina.com.cn/s/blog_801997310102vy87.html
前言:今天发现一些同学 在NSDictionary转NSData竟然抓瞎了,所以就粘出来这个简单的方法!
大家在做网络请求的时间,如NSConnection 把NSData转NSDictionary的事了吧!
这里是一样的Foundation库提供的NSJSONSerialization 的一个方法: dataWithJSONObject:options:error:
如题代码如下:
NSDictionary *dic = @{@"name":@"macRong",@"webHome":@"eqi.cc"};
NSData *data = [NSJSONSerialization dataWithJSONObject:dic options:NSJSONWritingPrettyPrinted error:nil];
NSDictionary *dictionary = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableContainerserror:nil];
NSLog(@"NSDictionary 转 NSData = %@",data);
NSLog(@"NSData 转 NSDictionary =%@",dictionary);
总结:这只是个小小的问题方法,敲代码还是要灵活的去转化