嗨,我正试图从以下JSON文件(dataArray)中获得主题名称值,我已经通过NSJSONSERIALISATION运行:
-0: {
id: "55edc05848177ec741daf79e"
firstName: "Brad"
rating: 4.2
lessons: 5
text: "Lessons, they're yours take it"
-subjects: [4]
-0: {
name: "Indonesian"
pricePerHour: "500000"
}
-1: {
name: "Diving"
pricePerHour: "700000"
}
但是我无法使用我用于其他元素的indexPath和点表示法访问它。我理解它必须,因为我必须访问两个数组内的NSDictionary元素,但是还没有能够找到正确的代码来做到这一点(虽然在这里看了很多,大多数例子是更简单的情况下)。这是我一直在尝试的代码,但正如我提到的,我现在看到这段代码不包括JSON数组中的数组。我应该如何修改它以获得值:
// Load and display subjects
UILabel *subjectLabel = (UILabel *)[cell viewWithTag:103];
NSString * subject1String = [dataArray[indexPath.row] valueForKeyPath: @"subjects.0.name"];
subjectLabel.text = [NSString stringWithFormat:@"%@", subject1String];
我认为这不是有效的Json。打印从服务器端得到的响应。对于获取name:,您需要添加loop。