如何在触发 didSelectRowAt 操作和取消选择 tableview 单元格之前添加轻微的延迟
How to add a slight delay before triggering didSelectRowAt action and deselecting the tabelview cell
编辑:
我没有意识到是 Animates(在情节提要中的 segue 中)和 pushViewController() 中的动画完成了这项工作。
当我们点击 table 视图中的一行时,如何平滑过渡到下一个视图。我想实现与 Apple 的设置应用程序类似的平滑过渡效果。现在,只要触摸行,我的转换就会立即发生。
在 Apple 的设置应用中,当您点击“设置”菜单上的一行时,它会首先突出显示该行,然后平滑地过渡到下一个视图。这就是我想要实现的。
我已经搜索过,但找不到任何相关的解决方案。有帮助吗?
以下是我对行 select
的代码
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
let cell = tableView.cellForRow(at: indexPath)
tableView.deselectRow(at: indexPath, animated: true)
//.....
self.navigationController?.pushViewController(destinationVC, animated: false)
}
您需要更改演示文稿样式。因此,在故事板中单击您的 segue。然后 select Kind
as Push
来自右侧 Attributes Inspector
的下拉列表。
此外,要以编程方式显示它,您需要在 Attributes Inspector
的第一个文本字段中设置标识符。然后在你的 tableView(_:didSelectRowAt:)
添加这个。
performSegue(withIdentifier: "SegueIdentifier", sender: nil)
如果您想要延迟操作,那么您可以使用 asyncAfter
,例如 suggested here。
DispatchQueue.main.asyncAfter(deadline: .now() + 0.33) {
self.deselectRow(at: indexPath, animated: true)
self.performSegue(withIdentifier: "SegueIdentifier", sender: nil)
}
编辑: 我没有意识到是 Animates(在情节提要中的 segue 中)和 pushViewController() 中的动画完成了这项工作。
当我们点击 table 视图中的一行时,如何平滑过渡到下一个视图。我想实现与 Apple 的设置应用程序类似的平滑过渡效果。现在,只要触摸行,我的转换就会立即发生。
在 Apple 的设置应用中,当您点击“设置”菜单上的一行时,它会首先突出显示该行,然后平滑地过渡到下一个视图。这就是我想要实现的。
我已经搜索过,但找不到任何相关的解决方案。有帮助吗?
以下是我对行 select
的代码func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
let cell = tableView.cellForRow(at: indexPath)
tableView.deselectRow(at: indexPath, animated: true)
//.....
self.navigationController?.pushViewController(destinationVC, animated: false)
}
您需要更改演示文稿样式。因此,在故事板中单击您的 segue。然后 select Kind
as Push
来自右侧 Attributes Inspector
的下拉列表。
此外,要以编程方式显示它,您需要在 Attributes Inspector
的第一个文本字段中设置标识符。然后在你的 tableView(_:didSelectRowAt:)
添加这个。
performSegue(withIdentifier: "SegueIdentifier", sender: nil)
如果您想要延迟操作,那么您可以使用 asyncAfter
,例如 suggested here。
DispatchQueue.main.asyncAfter(deadline: .now() + 0.33) {
self.deselectRow(at: indexPath, animated: true)
self.performSegue(withIdentifier: "SegueIdentifier", sender: nil)
}