获取tableview的行数
时间: 2023-08-24 16:09:54 浏览: 150
tableview单选行
在UITableViewDelegate中实现以下方法即可获取tableview的行数:
```swift
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return // 返回行数
}
```
在这个方法中,你需要返回你的tableview中每个section的行数。如果你的tableview只有一个section,则可以直接返回行数。如果你有多个section,则需要根据不同的section返回不同的行数。
阅读全文