I am using the following code to push my view controller, except when the UIButton is pressed – nothing happens apart from the NSLog statement:
-(IBAction)doChangePasscode{
NSLog(@"Change Passcode Screen Loaded!");
ChangePasscode *cpscreen = [[ChangePasscode alloc] initWithNibName:@"ChangePasscode" bundle:[NSBundle mainBundle]];
[self.navigationController pushViewController:cpscreen animated:YES];
}
I have imported the relavant files (using #import) so everything should be fine…
Why is this happening?
Thanks!
Have you debugged and checked that your
navigationControllerisn’t nil ?