我想在表格的最后一行下面创建一个按钮(不是动态的)。所有行和部分都是固定的。我是否必须创建另一个部分和行才能添加按钮?如果是,我怎样才能将按钮调整到与单元格相同的宽度和曲率?
这就是我所做的。我为按钮创建了一个特定的部分,为它创建了一行。
}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;
答案 0 :(得分:2)
你没有。将按钮设置为表格视图的表格页脚视图。
tableView.tableFooterView = myButton;