swift - 有没有办法根据之前是否在另一个 View Controller 上按下按钮来编写 if 语句?

标签 swift if-statement model-view-controller uiviewcontroller uibutton

我正在尝试创建一个计算器,向用户显示有关其大学成绩的结果。用户点击按钮并根据他们的选择,UI View 更新并显示下一个问题。我的代码一直有效,直到我需要它来访问之前在不同的 View Controller 上选择的之前点击的按钮。我遇到的问题具体是在一个 View Controller 上,用户可以选择他们是否想知道 Calculation1(与顶部按钮相关联 sender.tag == 1)或 Calculation2(底部按钮, sender.tag == 2)。无论按下哪个按钮,都会在新的 View Controller 上对相同的问题执行 segue。在回答了那个相互的问题之后,就只有一个按钮可以按下了。我正在尝试为如果选择了 Calculation1(来自以前的 VC)然后将 View 更新到下一个问题而编写一个 if 语句,如果选择了 Calculation2 则为下一个问题执行到另一个 VC 的 segue。我尝试使用 bool 值的方式是作为以前 VC 的属性。 if 语句不起作用,相反,无论选择如何,都会发生相同的操作。

这适用于使用 Xcode 的 Swift 的 iOS 应用程序。我试图创建一个 bool 值作为属性,以便在点击 Calculation1 时,findCalc1 = true 然后在下一个 VC 中访问该 bool 值作为属性,但它不起作用。我还尝试为相互问题的 segue 准备一个 bool 值,但它也没有用。我觉得我对不同 VC 之间可以做什么和不能做什么的理解存在差距。

//这是我的第一个 VC 的代码

@IBAction func lightButtonPressed(_ sender: UIButton) {

        if sender.tag == 1 && lightViewPromptIndex == 1 {

            desiredGpaText = textfield.text!
            performSegue(withIdentifier: "goToDarkButtonVC", sender: self)

           } else if sender.tag == 2 && lightViewPromptIndex == 1 {

            performSegue(withIdentifier: "goToDarkButtonVC", sender: self)

        }

//这是我的第二个 VC 的代码

@IBAction func darkButtonPressed(_ sender: Any) {

    if aboveTopPromptIndex == 1 && lightViewObject().findCalc1 == true {
        aboveTopTextPrompt.text = aboveTopPrompt2
        topTextfield.placeholder = "Ex: 76.00"
        besideTopTextLabel.isHidden = true
        underTopTextLabel.text = "course credits"
        aboveBottomTextPrompt.text = "that count toward my GPA."
        bottomTextfield.isHidden = true
        underBottomTextLabel.isHidden = true
        bottomFloatingLabel.isHidden = true
        darkButton.setTitle(nextTitle, for: .normal)
        aboveTopPromptIndex = 2
    } else if aboveTopPromptIndex == 1 && lightViewObject().findCalc1 == false {
        performSegue(withIdentifier: "darkViewToABC", sender: TextfieldTwoLightButtonsViewController.self)

共同问题有aboveTopPromptIndex == 1。我希望发生的情况是,如果询问该问题并且之前选择了 Calculation1,则运行 if 语句中的第一段代码......如果需要 Calculation2,则在 else if 语句中进行 segue。相反,无论按下哪个按钮,if 语句的第一部分都会发生,而不管之前是否选择了 Calculation2。

最佳答案

This problem is about passing data from one view controller to another view controller. To pass data from one view controller to another view controller you can use the methods of segue

func prepareForSegue(segue: UIStoryboardSegue!, sender: AnyObject!) { }

用法:

将扩展添加到您的第一个 View Controller ,即添加到您的 lightViewController

extension lightViewController {

    override func prepareForSegue(segue: UIStoryboardSegue!, sender: AnyObject!) {
        if (segue.identifier == "goToDarkButtonVC") {
            let destVC = segue.destinationViewController as! darkViewController
            destVC. findCalc = sender as! Bool
        }
    }
    @IBAction func lightButtonPressed(_ sender: UIButton) {

         if sender.tag == 1 && lightViewPromptIndex == 1 {

             desiredGpaText = textfield.text!
             // In the sender set the value as per your need....
             performSegue(withIdentifier: "goToDarkButtonVC", sender: true)

         } else if sender.tag == 2 && lightViewPromptIndex == 1 {
              // In the sender set the value as per your need....
              performSegue(withIdentifier: "goToDarkButtonVC", sender: true)
        }
    }
}

在你的第二个 View Controller 中访问值就像这样:

class darkViewController : UIViewController {
    var findCalc = false 
    @IBAction func darkButtonPressed(_ sender: Any) {

        if aboveTopPromptIndex == 1 && self.findCalc1 == true {
          //TODO: add your handling code here....
        }
}

这就是您可以轻松实现要求的方式。

关于swift - 有没有办法根据之前是否在另一个 View Controller 上按下按钮来编写 if 语句?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54301203/

相关文章:

ios - 我的滚动图像按钮无法快速运行

jquery - 检查输入值 > 0 jQuery Coffee

jQuery Cycle - 这个 jquery 脚本有什么问题?

html - MVC Bootstrap 未正确对齐

ios - 导航到不同的 ViewController 时 BLE 外设断开连接

ios - 调用 dismiss 后 UIViewController 仍在内存中

ios - 模拟零重力风格的球员运动

html - SQL中使用IF语句判断邮件是否发送

c# - 查找 asp.net MVC 中 View 的所有引用

javascript - Controller 之间的 EmberJS 绑定(bind)内容