0

我需要在我的 iphone 应用程序中阅读一个返回 jsonarry 的网络服务。阅读完这篇文章后,我需要在我的 tableview 中加载这些信息。

但是返回的是一个字符串,如何将这个字符串转换为我的表格视图可以理解的一种格式。

以下示例返回

{"codUf":28,"descricao":"MG"},{"codUf":29,"descricao":"PR"},{"codUf":19,"descricao":"RJ"},{" codUf":25,"descricao":"SP"}]

谢谢 !!

4

1 回答 1

1

如果您使用的是 ios5,请按照教程进行操作:

#define kBgQueue dispatch_get_global_queue(
 DISPATCH_QUEUE_PRIORITY_DEFAULT, 0) //1

dispatch_async(kBgQueue, ^{
        NSData* data = [NSData dataWithContentsOfURL: 
          kLatestKivaLoansURL];
        [self performSelectorOnMainThread:@selector(fetchedData:) 
          withObject:data waitUntilDone:YES];
    });

NSDictionary* json = [NSJSONSerialization 
        JSONObjectWithData:responseData //1

        options:kNilOptions 
        error:&error];

现在您的 JSON 数据应该在 json 字典中。祝你好运,如果您还有其他问题,请发表评论。

于 2013-04-28T01:20:16.270 回答