我想仅在 indexPath.row 的 UITableView 中显示 UIButton。
但是,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];
}
我该如何解决这个问题?谢谢。