swift3 – Swift 3 scrollToRowAtIndexPath成为scrollToRow

swift3 – Swift 3 scrollToRowAtIndexPath成为scrollToRow,第1张

概述我正在转换一个 Swift 2.3项目o Swift 3并挖掘数千个变化 我目前有这样的代码: outletCatalog.scrollToRowAtIndexPath(myIndex, atScrollPoisition: .top, animated: false) 但是,它显然被替换为 func scrollToRow(at: IndexPath, at: UITableViewScroll 我正在转换一个 Swift 2.3项目o Swift 3并挖掘数千个变化

我目前有这样的代码:

outletCatalog.scrollToRowAtIndexPath(myIndex,atScrollPoisition: .top,animated: false)

但是,它显然被替换为

func scrollToRow(at: IndexPath,at: UItableVIEwScrollposition,animated: Bool)

但是 – 我不明白“at”的双参数命名,我的Google搜索没有产生任何结果.代码翻译工具只是表明了它

scrollToRow(at:at:animated)
在从Swift 2.3到Swift 3.2版本的代码转换之后,您需要在GCD主调度块内调用以下代码,并将自动滚动行的新更改调用到索引.
dispatchQueue.main.async {   let index = IndexPath(row: 10,section: 0) // use your index number or Indexpath   self.tableCart.scrollToRow(at: index,at: .mIDdle,animated: true) //here .mIDdle is the scroll position can change it as per your need}

我希望它对你有用.

Support – Swift 3.1,3.2,4.1

总结

以上是内存溢出为你收集整理的swift3 – Swift 3 scrollToRowAtIndexPath成为scrollToRow全部内容,希望文章能够帮你解决swift3 – Swift 3 scrollToRowAtIndexPath成为scrollToRow所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1042033.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-24
下一篇 2022-05-24

发表评论

登录后才能评论

评论列表(0条)

保存