gpt4 book ai didi

ios - 在 iOS 中滑动 tableview

转载 作者:搜寻专家 更新时间:2023-11-01 07:22:22 25 4
gpt4 key购买 nike

如何滑动表格 View 中的所有内容并使用新内容更新表格 View ,我正在做一个项目,就像 google drive IOS 应用程序一样,当你点击一个文件夹时,旧内容会向左滑动新内容从右侧滑入,有人对此有任何想法吗?任何帮助将不胜感激,谢谢!!!

最佳答案

tableView.beginUpdates()
tableView.insertRowsAtIndexPaths(toAdd, withRowAnimation: animateLeft ? .Right : .Left)
tableView.deleteRowsAtIndexPaths(toDelete, withRowAnimation: animateLeft ? .Left : .Right)
tableView.endUpdates()

如果您要删除所有数据,则 toDelete 变量是 indexPaths 0 到 currentContent.count 的数组。 toAdd 变量是 indexPaths 0 到 newContent.count 的数组。 animateLeft 是一个 bool 值,表示您希望以何种方式为您的内容制作动画

关于ios - 在 iOS 中滑动 tableview,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38139422/

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