我有三个ViewControllers。当您点击显示警报的ThirdViewController
按钮时,我想执行从SecondViewController
到Ok
的segue。我已经尝试过这段代码:
alert.addAction(UIAlertAction(title: "Ok!", style: UIAlertActionStyle.default, handler: { action -> Void in
self.performSegue(withIdentifier: "ThirdViewControllerSegueBack", sender: self)
}))
问题是显示了SecondViewController
的新窗口,因此当我点击导航栏上的back
时,它会将我带回ThirdViewController
。我希望它显示FirstViewController
。