セル番号1と2の画像をインポートしようとしています。しかし、結果は私のイメージが最後のセルに表示されます!何故かはわからない !!これは私の状況を示した画像です:UITableViewセル画像の問題
// Configure the cell.
NSUInteger row = [indexPath row];
cell.textLabel.text = [titles objectAtIndex:row];
cell.detailTextLabel.text = [subtitle objectAtIndex:row];
switch (indexPath.row) {
case 0:
cell.imageView.image = [UIImage imageNamed:@"new.png"];
break;
case 1:
cell.imageView.image = [UIImage imageNamed:@"new.png"];
break;
}
return cell;
}
ありがとうございました。 –