0

我想在表格的最后一行下面创建一个按钮(不是动态的)。所有的行和部分都是固定的。我是否必须创建另一个部分和行才能添加一个按钮?如果是的话,我怎样才能将按钮调整到单元格的相同宽度和曲率?

这就是我所做的。我为按钮创建了一个特定的部分,并为它创建了一行。

}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;
4

1 回答 1

2

你没有。将您的按钮设置为表格视图的表格页脚视图。

tableView.tableFooterView = myButton;
于 2012-07-31T05:35:10.990 回答