how to perform Condition check, before segue unwind

后端 未结 2 1635
青春惊慌失措
青春惊慌失措 2021-01-06 09:41

VC1 segues to VC3 which has a keypad and predetermined lowest number acceptable entered into a label. User can either add a number to the end of th

2条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-06 10:36

    To achieve this, connect Controller of VC3 to its own exit and select the unwind action.

    Give this exit-segue a segue.identifier "YOUR EXIT TEXT"

    Still in VC3, create an IBAction for the "Accept" button.

    @IBAction func accept(sender: AnyObject) {
        if //Condition X is true
            {performSegueWithIdentifier("YOUR EXIT TEXT", sender: self)}
        else {
            //Do this
            }
    

提交回复
热议问题