从ViewController调用UITableViewDelegate方法,可以通过以下步骤实现:
class ViewController: UIViewController, UITableViewDelegate {
// ...
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
// 在这里处理用户点击了某个单元格的事件
}
func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
// 在这里返回单元格的高度
return 44
}
// ...
}
tableView.reloadData()
这样,就可以在ViewController中调用UITableViewDelegate方法了。
推荐的腾讯云相关产品和产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云