- (void)receiveData:(NSData *)data {
self.office = [NSJSONSerialization JSONObjectWithData:data options:kNilOptions error:nil];
self.files = [office objectForKey:@"files"];
[self.myTableView reloadData];
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return self.files.count;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [[UITableViewCell alloc] init];
NSDictionary *file = [self.files objectAtIndex:indexPath.row];
cell.textLabel.text = [file objectAtIndex:1]; //here i want to get data from the array
cell.textLabel.font = [UIFont boldSystemFontOfSize:15];
cell.textLabel.numberOfLines = 1;
return cell;
NSLog(@"files:\n%@", file);
}
我有一个 json 响应,我存储在 NSDictionary 办公室中,并且该 json 中的数组存储在 NSArray 文件中,现在我已将 files 数组提供给另一个 NSDictionary 文件,并根据存储在该文件中的数据,我希望该数据在我的表中行,但我的文件数组中没有任何“键”,只有该数组中的值,
所以我的问题是,我如何在我的文件字典中指出该值,我已在我想要的地方发表评论,请参阅该评论....