gpt4 book ai didi

ios - 取消对自定义 segue 的操作

转载 作者:行者123 更新时间:2023-11-28 10:16:09 25 4
gpt4 key购买 nike

我有这个代码:

@IBAction func cancelAction(_ sender: Any) {
self.dismiss(animated: true) { }
}

是否可以使用自定义 segue 以不同方式完成?

谢谢

最佳答案

像这样定义您的自定义转场:

class DismissSegue: UIStoryboardSegue {

override func perform() {
if let p = source.presentingViewController {
p.dismiss(animated: true, completion: nil)
}
}

}

在你的 Storyboard上,将按钮的 Action segue 拖到 View Controller 本身并选择 Custom > Dismiss,确保 segue 的模块设置为你当前的项目模块(如果它是空的):

enter image description here

关于ios - 取消对自定义 segue 的操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41388069/

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