My Swift segue is not working at all and isn\'t throwing any errors. The breakpoint shows me that the app lands on this line but nothing happens:
self.perfor
You can try this ...
override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) { if (segue.identifier == "SignupSegue") { if let destination = segue.destination as? SignUpViewController { ... } } }