我的tableview单元格在上一节中只显示了4个中的3个。减少他们的身高,更多出现。增加行高,减少出现。
我在索引路径的行的高度:
返回64
我的tableview已创建:
lazy var performanceTableView: UITableView = {
let tableView = UITableView()
tableView.dataSource = self
tableView.delegate = self
tableView.frame = self.view.bounds
tableView.separatorStyle = .None
tableView.scrollEnabled = true
tableView.backgroundColor = UIColor.backgroundColor()
tableView.estimatedRowHeight = UITableViewAutomaticDimension
tableView.backgroundView = nil
return tableView
}()
我的tableview单元格似乎停在底部,就像我的视图高度有限,卡在一个框架上......任何想法为什么?
答案 0 :(得分:0)
UITableView clipsToBounds
属性设置为true
。如果您正在寻找单元格以继续浏览视图框架的底部,则可能需要更改它。
此外,将tableview的框架设置为视图框架,或创建约束以将此视图绑定到边缘。