如何解决如何使第一个单元格可见?
我有一个检测最后一个单元格的代码,但我很好奇现在如何检测 tableView 中的第一个单元格,因为在我的 tableView 中,并非所有单元格在 iphone 7 或更少的设备上都可见,这就是为什么我必须使用滚动方法。
func scrollViewDidScroll(_ scrollView: UIScrollView) {
let contentOffsetMaxY: Float = Float(scrollView.contentOffset.y + scrollView.bounds.size.height)
let contentHeight: Float = Float(scrollView.contentSize.height)
let lastCellIsVisible = contentOffsetMaxY > contentHeight
if lastCellIsVisible {
//some action
}
}
解决方法
您可以使用 tableView(_:willDisplay:forRowAt:) 个,共 UITableViewDelegate 个。
它会在单元格显示之前调用,并且会为每个单元格调用一次。
您的代码如下所示:
func viewDidLoad() {
super.viewDidLoad()
...
tableView.delegate = self
...
}
func tableView(_ tableView: UITableView,willDisplay cell: UITableViewCell,forRowAt indexPath: IndexPath) {
if indexPath.row == 0 {
// First cell is going to be displayed
}
if indexPath.row == tableView.numberOfRows(inSection: indexPath.section) - 1 {
// Last cell is going to be displayed
}
}
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。