tableview.setRowHeight
时间: 2023-11-21 14:57:25 浏览: 222
tableViewCell 自适应高度
根据提供的引用内容,没有直接涉及到tableview.setRowHeight方法。但是可以根据提供的引用内容回答如下问题:
UITableView如何设置行高?
UITableView的行高可以通过以下两种方式进行设置:
1.在UITableViewDelegate协议中实现heightForRowAtIndexPath方法,该方法返回一个CGFloat类型的值,表示该行的高度。例如:
```swift
func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
return 50 // 返回行高为50
}
```
2.设置UITableView的rowHeight属性,该属性表示UITableView的所有行的默认高度。例如:
```swift
tableView.rowHeight = 50 // 设置行高为50
```
需要注意的是,如果同时使用以上两种方式设置行高,heightForRowAtIndexPath方法的优先级更高。
阅读全文