我正在尝试在UITableView中添加数据源。我尝试了以下方法,但不幸的是它没有用:
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 8;
}
// Customize the appearance of table view cells.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
// Set the data for this cell:
cell.textLabel.text = [_classCellview objectAtIndex:indexPath.row];
cell.detailTextLabel.text = @"One";
cell.detailTextLabel.text = @"Two";
// set the accessory view:
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
return cell;
}
答案 0 :(得分:0)
cell.textLabel.text = [_classCellview objectAtIndex:indexPath.row];
您告诉该表有8个部分,但在填充单元格时,您没有考虑索引路径中的section
。索引路径(在表格视图的情况下)具有两个值:section
和row
。你需要它们才能知道你正在处理什么样的细胞。因此,您可能会在表格的每个部分重复相同的内容。 (如果你确切地告诉我们问题是什么,那会很有帮助。)