テーブルの最後の行の下に(動的ではなく)ボタンを作成したいと思います。すべての行とセクションが固定されています。ボタンを追加するためだけに別のセクションと行を作成する必要がありますか?はいの場合、ボタンをセルの同じ幅と曲率に調整するにはどうすればよいですか?
これが私がしたことです。ボタン用の特定のセクションとその1つの行を作成します。
}else if(indexPath.section ==2)
{
UIButton *cellButton = [UIButton buttonWithType:UIButtonTypeCustom];
[cellButton setFrame:CGRectMake(0.0f, 5.0f, cell.frame.size.width, 44.0f)]; // not filling the round parts of the cell
[cellButton setBackgroundColor: [UIColor yellowColor]];
[cellButton setTitle:@"test" forState:UIControlStateNormal];
[cell.contentView addSubview:cellButton];
}
return cell;