我在 UItableView 中有 6 个部分,每个部分显示 2 个单元格,通常,我希望它是这样的:
但是,这就是我所拥有的:
每个 indexPath.row 在每个部分中都重复。这是代码:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"avenir";
Avenir *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if(!cell) {
cell =[[Avenir alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
cell.equipea.text=[arrayofClubA objectAtIndex:indexPath.section];
cell.equipeb.text=[arrayofClubB objectAtIndex:indexPath.section ];
return cell;
}
从两个 NSMutableArray 中检索元素,一个用于单元格中的第一个左侧元素,另一个用于右侧元素单元格。怎么了?
感谢您的帮助。