如何在返回json的c#中读取裸体的Web服务

时间:2013-04-28 01:09:53

标签: iphone ios objective-c

我需要阅读一个在我的iphone应用程序中返回jsonarry的webservice。 阅读完毕后,我需要在我的tableview中加载这些信息。

但是返回是一个字符串,如何使用我的表视图理解的格式转换此字符串。

以下示例返回

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

谢谢!

1 个答案:

答案 0 :(得分:1)

如果您正在使用ios5,请遵循tutorial

#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字典中。祝你好运,如果你还有其他问题,请发表评论。