我试图为分组动态原型单元格(Swift)创建一个页脚。
它对静态单元格工作正常,在Storyboard中甚至有控件,但是这也可以通过动态填充的tableView来实现吗?
我在我的应用中同时使用tableView与静态和动态单元格,但我希望它们看起来相似。
非常感谢你的帮助。
答案 0 :(得分:1)
事实证明,我只需将此方法实现到包含此tableView的viewController中:
override func tableView(tableView: UITableView, titleForFooterInSection section: Int) -> String? {
return "This will appear in footer styling below the section."
}
答案 1 :(得分:0)
如果您的页脚是故事板中的tableview中的单元格,您可以这样做(就像普通的动态表格视图单元格有乐趣^^)
func tableView(tableView: UITableView, viewForFooterInSection section: Int) -> UIView? {
// custom view for footer. will be adjusted to default or specified footer height
let cell = tableView.dequeueReusableCellWithIdentifier("myfootercell") as? MyFooterTableViewCell;
cell!.mLblMessage.text = "Hello";
// Configure the cell...
return cell!
}