在UItableView末尾显示带有自定义文本的页脚视图,可以通过以下步骤实现:
let label = UILabel()
label.text = "自定义文本"
label.textAlignment = .center
label.textColor = UIColor.black
func tableView(_ tableView: UITableView, viewForFooterInSection section: Int) -> UIView? {
let footerView = CustomFooterView()
return footerView
}
func tableView(_ tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat {
return 50.0 // 设置合适的高度
}
这样,当UITableView加载数据并显示完所有的cell后,会自动显示带有自定义文本的页脚视图。
腾讯云相关产品推荐:
领取专属 10元无门槛券
手把手带您无忧上云