gpt4 book ai didi

ios - 如何创建 ReloadRow 动画

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

我创建了这个函数来在点击按钮后重新加载 tableView 的单行。

@IBAction func reloadCell(_ sender: UIButton) {
let index = IndexPath(row: sender.tag, section: 0)
self.tableView.reloadRows(at: [index], with: .none)
}

但是我想要一个动画来重新加载从右到左移动行的行,以便清楚地表明该行已被重新加载。我该怎么做?

最佳答案

使用 rightleft UITableViewRowAnimation:

tableView.reloadRows(at: [index], with: .right)

tableView.reloadRows(at: [index], with: .left)

可用的动画可以在the documentation中看到.

关于ios - 如何创建 ReloadRow 动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47802265/

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