我正在使用tableView控制器,并为原型单元格设置了200px的高度,但是当我构建并运行该单元格时,其高度却没有200px。 我该怎么解决?
这是我的UITableViewController类:
import UIKit
class ViewController: UITableViewController {
override func viewDidLoad() {
super.viewDidLoad()
tableView.rowHeight = UITableViewAutomaticDimension
tableView.estimatedRowHeight = 200
}
override func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
return 200
}
}
答案 0 :(得分:0)
尝试
func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
return 200
}