gpt4 book ai didi

swift - 滚动 TableView 时,我需要在 TableView 最顶部传递的行

转载 作者:行者123 更新时间:2023-11-30 11:07:28 26 4
gpt4 key购买 nike

我有一个 TableView ,我需要在 TableView 的最顶部(0,0)传递的行的索引路径,我尝试使用需要cgpoint的indexPathForRow(at:),我尝试CGPoint.zero 来获取行,但 indexPath 始终为零,我读到我需要使用 ScrollView 的偏移量,并且该点需要位于本地坐标中,但到目前为止还没有运气

func scrollViewDidScroll(_ scrollView: UIScrollView) {
let cgPoint = CGPoint.zero
let indexPath = tableView.indexPathForRow(at: cgPoint)
}

感谢您的帮助!

最佳答案

可能只有一个原因导致此值为零,因为您的观点未绑定(bind)在 tablview 范围内。

苹果文档:

An index path representing the row and section associated with point, or nil if the point is out of the bounds of any row. point in the local coordinate system of the table view (the table view’s bounds).

试试这个。

let cgPoint = CGPoint.zero

if self.tableView.frame.contains(cgPoint) {
print("point exist so indexpath should exist")
}

引用号:Diff between bounds and frame

关于swift - 滚动 TableView 时,我需要在 TableView 最顶部传递的行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52547163/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com