使用 UIAlertAction 执行 segue

Perform segue with UIAlertAction

我想让 "Next" 按钮执行 segue 以移动到 "PersonalInformation"(一个 UIViewController)

但是我得到了 "signal 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)

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