用NSJSONSerialization自己构造WebService的Json响应包

前端之家收集整理的这篇文章主要介绍了用NSJSONSerialization自己构造WebService的Json响应包前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

NSString *sampleData = @"{\"id\":1,\"name\":\"NickName\",\"sex\":\"Male\",\"PhoneNo\":18818157583,\"comment\":\"Thisiscomment\",\"profile\":\"nothing is impossible\"}";

NSDictionary *dict = [NSJSONSerialization JSONObjectWithData:[sampleData dataUsingEncoding:NSUTF8StringEncoding] options:(NSJSONReadingMutableContainers) error:nil];


CustomModel *model = [ [CustomModel alloc] initWithDict: dict];

原文链接:https://www.f2er.com/json/290379.html

猜你在找的Json相关文章