I'm trying to perform a segue into another screen works fine in IOS 7/8 but seems to error here any ideas what could be the issue?
It's pretty simple...
UIAlertAction *actionContinue = [UIAlertAction actionWithTitle:@"Continue"
style:UIAlertActionStyleDefault
handler:^(UIAlertAction *action) {
[self performSegueWithIdentifier:@"ContinueActivityPush" sender:self];
}];Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Could not perform segue with identifier 'ContinueActivityPush'. A segue must either have a performHandler or it must override -perform.'