gpt4 book ai didi

ios - Swift 中的 scrollToRowAtIndexPath 问题

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

我有一个非常简单的问题,但我无法弄清楚问题所在。

我正在尝试在 UITableView 上添加一个导航栏按钮,它将用户滚动到特定的行。我认为使用以下代码会很简单:

@IBAction func scrollToNow(sender: AnyObject) {
careerTableView.scrollToRowAtIndexPath(4, atScrollPosition: UITableViewScrollPosition.Middle, animated: true)
}

但我目前收到错误:

Cannot invoke 'scrollToRowAtIndexPath' with an argument list of type '(Int, atScrollPosition: UITableViewScrollPosition, animated: Bool)'

有什么想法吗?

最佳答案

试试这个:

@IBAction func scrollToNow(sender: AnyObject) {
careerTableView.scrollToRowAtIndexPath(NSIndexPath(index: 4), atScrollPosition: UITableViewScrollPosition.Middle, animated: true)
}

关于ios - Swift 中的 scrollToRowAtIndexPath 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29725168/

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