UIButtonをUITableViewのindexPath.rowにのみ表示したいのですが。
ただし、UIButtonはすべてのセルに表示されます。
if (indexPath.row % 2 == 0) {
UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
button.frame = CGRectMake(160, 140, 80, 40);
[button setTitle:@"button" forState:UIControlStateNormal];
[cell addSubview:button];
}
この問題を解決するにはどうすればよいですか?ありがとう。