gpt4 book ai didi

ios - 一个具有多个操作的 UIAlertController 函数 - 这可能吗?

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

以下代码是我编写的用于处理“后退”按钮和“注销”按钮的函数。当用户点击“取消”时,他将停留在当前 View ,当他点击“确定”时,他将被带到上一个 View 或登录屏幕,具体取决于他点击的按钮。我可以用一个功能来做到这一点,还是每个按钮都需要一个功能?我更喜欢一个函数,我可以创建一个全局函数并在所有三个 View 中使用。

func passThroughErrorAlertController(title:String, error:String) {
var passThroughAlert = UIAlertController(title: title, message: passThroughError, preferredStyle: UIAlertControllerStyle.Alert)
passThroughAlert.addAction((UIAlertAction(title: "Cancel", style: .Cancel, handler: nil)))
passThroughAlert.addAction((UIAlertAction(title: "OK", style: .Default, handler: {action in
self.dismissViewControllerAnimated(true, completion: nil)
})))
self.presentViewController(passThroughAlert, animated: true, completion: nil)
}

我可以使用 performSegueWithIdentifier 然后使用带有 segue 标识符的 var 吗?那会是什么样子?我的意思是,在 performSegueWithIdentifier 之后是否需要添加参数?

最佳答案

您只需指定一个不同的标识符,具体取决于您要展开到哪个 View Controller 。

您的 AlertController 将指定正确的标识符,具体取决于用户是否已注销(退回登录)或未注销(退回上一个 View )。

如果您需要传递额外的信息,您可以在 prepareForSegue 中进行设置。

关于ios - 一个具有多个操作的 UIAlertController 函数 - 这可能吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30742779/

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