我想在表格的最后一行下面创建一个按钮(不是动态的)。所有的行和部分都是固定的。我是否必须创建另一个部分和行才能添加一个按钮?如果是的话,我怎样才能将按钮调整到单元格的相同宽度和曲率?
这就是我所做的。我为按钮创建了一个特定的部分,并为它创建了一行。
}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;