在静态表格中添加按钮到单元格页脚的简便方法

时间:2016-04-07 08:47:43

标签: ios swift uitableview

enter image description here

我想为部分页脚添加带自定义动作的按钮,但这样做时我感到很痛苦。因为我需要将页脚高度设置为0.添加另一个新部分,并自定义它。有没有更好的解决方案如何将自定义元素添加到部分页脚,如图像。

1 个答案:

答案 0 :(得分:0)

  1. 创建页脚视图和按钮。
  2. 将按钮添加到页脚。
  3. 将其他内容添加到tableFooter属性。
  4. let footerView = UIView(frame: CGRectMake(0, 0, tableView.frame.size.width, 20)) let aboutButton = UIButton(frame: CGRectMake(0, 0, 20, 20)) aboutButton.setTitle("About purchased items...", forState: UIControlState.Normal) //Here you should set the proper autolayout constraint footerView.addSubview(aboutButton) tableView.tableFooterView = footerView