我尝试将视图放在UiTableView的屏幕底部。我怎样才能做到这一点?现在它仍然是最后一排。我搜索了它,但我没有找到有用的东西。我希望你们能帮助我
答案 0 :(得分:3)
答案 1 :(得分:0)
答案 2 :(得分:0)
您可以在代码中为表格视图单元格底部添加此行
override func tableView(tableView: UITableView, viewForFooterInSection section: Int) -> UIView? {
let footerView = UIView(frame: CGRectMake(0, 0, tableView.frame.size.width, 60))
footerView.backgroundColor = UIColor.whiteColor()
return footerView
}