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;
}
要素は 2 つの NSMutableArrays から取得されます。1 つはセルの最初の左側の要素用で、もう 1 つは右側の要素セル用です。なにが問題ですか?
助けてくれてありがとう。