使用UIAlertAction执行segue

时间:2016-02-24 15:00:46

标签: ios swift segue uialertcontroller uialertaction

我想让“下一步”按钮执行segue移动到“PersonalInformation”(一个UIViewController)

但是我得到了一个带有代码的“信号SIGABRT”。 我该如何解决?

let alert = UIAlertController(title:"Confirmation", message: confirmationMessage, preferredStyle: UIAlertControllerStyle.Alert)

let confirmBtn : UIAlertAction = UIAlertAction(title: "Next", style: UIAlertActionStyle.Default, handler: {(action:UIAlertAction!)-> Void in

    self.performSegueWithIdentifier("PersonalInformation", sender: self)

})

let cancelBtn : UIAlertAction = UIAlertAction(title: "Cancel", style: UIAlertActionStyle.Cancel, handler: nil)

alert.addAction(cancelBtn)
alert.addAction(confirmBtn)

self.presentViewController(alert, animated: true, completion: nil)

1 个答案:

答案 0 :(得分:1)

这主要是由错误的故事板或xib / nib连接引起的,请确保您在故事板中具有正确的连接,该连接具有下一个按钮或您要移动的按钮。