テーブル内の各ボタンに画像を追加するにはどうすればよいですか
テーブルに 8 つのボタンがあり、ボタンごとに異なる画像を配置したい
8つの画像を受け入れるようにコードを変更する方法は次のとおりです
- (UIImage *)cellBackgroundForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSInteger rowCount = [self tableView:[self tableView] numberOfRowsInSection:0];
NSInteger rowIndex = indexPath.row;
UIImage *background = nil;
if (rowIndex == 0) {
background = [UIImage imageNamed:@"Button01.png"];
} else if (rowIndex == rowCount - 1) {
background = [UIImage imageNamed:@"Button02.png"];
} else {
background = [UIImage imageNamed:@"Button03.png"];
}
return background;
}