I've created a segue from one VC to another VC (Dragging form the VC to the other VC), and called it RegisterUserSegue , its a Push segue and all my view controllers are embedded in a navigation controller. I'm calling the segue like this:
[self performSegueWithIdentifier:@"RegisterUserSegue" sender:self];
and in performSegueWithIdentifier
I've set an NSLog that is called every time I call the segue, but the viewController doesn't change.
EDIT:
however if i comment out the - (void)performSegueWithIdentifier:(NSString *)identifier sender:(id)sender
method, everything works just fine.
This is the method:
- (void)performSegueWithIdentifier:(NSString *)identifier sender:(id)sender {
NSLog(@"Called");
}
help? thanks!