我的json响应是二维数组,所以如何在UITableView中显示该响应

时间:2015-12-02 09:26:04

标签: ios objective-c json uitableview

您好我正在尝试显示二维数组,就像在这张图片中但不能正常工作我的代码请帮助我,我的json respone是在我要在UITableView中显示的图像

enter image description here

$customer->subscriptions['data']

2 个答案:

答案 0 :(得分:1)

希望它会对你有帮助,

你做了一些小错误,做了如下的事情,

arrayCategories = [responseObj valueForKey:@"categories"]; //Which is already there in your code....

在textLabel中获取值时,请按以下方式编写

cell.textLabel.text = [[[arrayCategories objectAtIndex:indexPath.row] componentsSeparatedByString:@"="] objectAtIndex:1];

这里不要写valueForKey“类别”。 如果您仍然遇到任何问题,请告诉我。

答案 1 :(得分:0)

我知道问题出在你的回复中。在类别键中你没有得到数组,你得到的对象。你在成功块中获得的精确日志NSLog(@"%@",responseObj);以便我可以帮助你排序它出来了。