Sequel - NSInternalInconsistencyException

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.'

Answered by lennyj in 12907022

This seemed to an issue with Xcode. It appeared to corrupt one the pushes I had created between screens and marked it as custom. I just had to fix in the storyboard to make it work again. It happened in a few areas...

Accepted Answer

This seemed to an issue with Xcode. It appeared to corrupt one the pushes I had created between screens and marked it as custom. I just had to fix in the storyboard to make it work again. It happened in a few areas...

Sequel - NSInternalInconsistencyException
 
 
Q