如何将JSON数据转换为xcode中的数组

时间:2013-02-20 16:04:24

标签: xcode json

我是iOS开发的新手,我一直试图找出如何将以下字符串转换为数组,然后在UITableView中显示该数组

{"Result":"OK","Users":[{"name":"The King","email":"king@gmail.com"},{"name":"The Resteruant","email":"theresturaunt@gmail.com"}]}

我想要的是“name”的数组和“email”的单独数组

这是我到目前为止所做的:

    strURL    = [NSString stringWithFormat:@"http://10.139.10.43/Wolfeboro_Connection/get_business.php"];
    dataURL   = [NSData dataWithContentsOfURL:[NSURL URLWithString:strURL]];
    strResult = [[NSString alloc] initWithData:dataURL encoding:NSUTF8StringEncoding];

    NSLog(@"%@", strResult);

我已经安装了一个JSON库,但我不知道如何使用它以及如何获取数组。请帮助举例。

编辑:发现了一个很好的教程帮助我解决了这个问题

http://www.youtube.com/watch?v=RJZcD3hfs3k

1 个答案:

答案 0 :(得分:0)

这可能会对你有所帮助。 “你在这里有一个包含键/值的字典,其中值也是字典。如果你需要一个包含这些词典的数组,比如value_b,你可以像这样”

Save JSON data in a NSArray