如果在执行分段之前条件为True [英] if Condition is True before it performs segue

查看:20
本文介绍了如果在执行分段之前条件为True的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用Segue进行从ViewController BViewController A的转换,同时使用Segue将数据从ViewController B传递到ViewController A。我已经构建了我的代码,其中用户将点击backbutton并使用SCLAlertView cocoapods执行alert controller。它在进入下一个ViewController之前会提示,但当我运行它时,段会自动执行,而不会先检查条件,也不会执行alert controller。下面是我的代码供你参考。希望你能在这方面帮助我,因为我是Swift的新手,我有我的研究,但我似乎看不到适用于我的问题的解决方案。谢谢。

override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
    if segue.identifier == "showVCA" {
        if let vc_A = segue.destination as? ViewControllerA {
            vc_A.validPincode = validPincode
            vc_A.participants = participants
            vc_A.event = event
        }
    }
}



 @IBAction func backbutton(_ sender: UIButton) {
    let alert = SCLAlertView(appearance: confirmationAppearance)
    _ = alert.addButton("Leave", action: {
        self.dismiss(animated: true, completion: nil)
        self.performSegue(withIdentifier: "showVCA", sender: sender)

    })
    _ = alert.addButton("Stay", action: { })
    _ = alert.showError("Confirmation", subTitle: "Are you sure you want to leave this page?")

}

推荐答案

您的backbutton()函数似乎没有呈现警报控制器(通过调用SCLAlertView的许多showXXX()函数之一),因此永远不会显示任何内容。您的按钮是否连接到视图控制器的出口而不是操作?

这篇关于如果在执行分段之前条件为True的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆