gpt4 book ai didi

ios - 自动滚动到 Swift 中 PFQueryTableViewController 中的下一个单元格

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

我有一个 PFTableViewController 和 Swift 中的 PFTableViewCells。

在每个TableViewCell(高度为屏幕尺寸的80%)中,都有一个按钮。我希望当用户选择按钮时,会自动滚动到下一个 TableViewCell。

知道我该怎么做吗?

非常感谢

最佳答案

只需确定索引路径并滚动到下一个索引路径。此示例假设一个没有分区的平面表。

func buttonTapped(sender: UIButton) {
let point = sender.convertPoint(CGPointZero, toView:tableView)
let indexPath = tableView.indexPathForRowAtPoint(point)!
// check for last item in table
if indexPath.row < tableView.numberOfRowsInSection(indexPath.section) {
let newIndexPath = NSIndexPath(forRow:indexPath.row + 1 inSection:indexPath.section)
tableView.scrollToRowAtIndexPath(
newIndexPath, atScrollPosition:.Top, animated: true)
}

}

关于ios - 自动滚动到 Swift 中 PFQueryTableViewController 中的下一个单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31625494/

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