当用户点击我的按钮时,我希望有一个类似于
的控制流程@IBAction func confirmPurchase(sender: AnyObject) {
if blue == true {
let mainTabController = UIStoryboard(name: "Main", bundle: nil).instantiateViewControllerWithIdentifier("MainTabBarController")
self.presentViewController(mainTabController, animated: true, completion: nil)
} else {
perform an unwind segue
}
}
我正在寻找在代码中调用unwind segue的方法。这是如何实现的?
答案 0 :(得分:3)
您可以使用performSegueWithIdentifier
以编程方式调用展开segue
您可以将其从视图控制器顶部的viewController
图标连接到exit
图标,而不是从按钮连接展开segue 。
请参阅本答案的第二部分,了解如何在故事板中进行连线: