目前尚不清楚您希望输出是什么样的。如果你想要节,名称是节的标题,你可以像下面这样。由于您的数据结构,获取正确的数据看起来很复杂(使用字典数组会容易得多)。
- (void)viewDidLoad {
[super viewDidLoad];
self.theData = @{@"Bob":@{@"2013-08-02 00:27:02 +0000":@70, @"2013-08-02 00:28:17 +0000":@60}, @"Robert":@{@"2013-08-02 02:53:19 +0000":@1137}, @"Mooga":@{@"2013-08-02 02:53:04 +0000":@80}};
self.keys = self.theData.allKeys;
[self.tableView reloadData];
}
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
NSLog(@"sections are: %d",self.keys.count);
return self.keys.count;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return [self.theData[self.keys[section]] count];
}
-(NSString *) tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
return self.keys[section];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell" forIndexPath:indexPath];
cell.textLabel.text = [self.theData[self.keys[indexPath.section]] allKeys][indexPath.row];
cell.detailTextLabel.text = [NSString stringWithFormat:@"%@",[self.theData[self.keys[indexPath.section]] valueForKey:[self.theData[self.keys[indexPath.section]] allKeys][indexPath.row]] ];
return cell;
}
这给出了这个输出(使用正确的细节单元格类型):
如果您不想要章节标题,您可以删除 titleForHeaderInSection 方法,并将 cellForRowAtIndexPath 方法更改为:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell" forIndexPath:indexPath];
NSString *name = self.keys[indexPath.section];
NSString *date = [self.theData[self.keys[indexPath.section]] allKeys][indexPath.row];
cell.textLabel.text = [NSString stringWithFormat:@"%@ %@",name,date];
cell.detailTextLabel.text = [NSString stringWithFormat:@"%@",[self.theData[self.keys[indexPath.section]] valueForKey:[self.theData[self.keys[indexPath.section]] allKeys][indexPath.row]] ];
return cell;
}
唯一的问题是,对于较长的名称,日期和时间字符串太长并且会截断数字值。因此,您要么需要缩短该字符串,要么转到该数字将位于单独一行的单元格的字幕类型。