0

我有一个应用程序,我在其中从 Web 服务获得这样的响应。谁能告诉我如何解析它以使其成为单独的字符串"Info":

{
  "name":"gdgdgdgd",
  "desc":"Cosmopolitan life, adventurous outlook, 'been there done that' attitude, and yet the way the life ...",
  "address1":" 2nd A Main ",
  "address2":" Layout,"
},
4

2 回答 2

2

这是一个对象的JSON表示。

在 iOS 5 中,我们将 JSON 类添加为NSJSONSerialization

这是一个教程:

http://www.raywenderlich.com/5492/working-with-json-in-ios-5

这是另一个讨论其他选项以及 JSONKit、YAJL 等选项的线程

iOS 中的原生 JSON 支持?

于 2012-07-11T05:27:26.350 回答
-1

使用 json 库做这样的事情

NSMutableDictionary *listd=[dict objectForKey:@"merchantInfo"];

if([listd isKindOfClass:[NSDictionary class]])

{

   stringshopname=[listd objectForKey:@"name"]; 
   stringshopdesc=[listd objectForKey:@"desc"];


}
于 2012-07-11T05:39:21.590 回答