I have this code to show a nib on click of row index
UIViewController *controller = [[ShowFavViewController alloc] initWithNibName:@"ShowFavViewController" bundle:nil];
[self.navigationController pushViewController:controller animated:YES];
self.navigationController.navigationBarHidden = NO;
NSLog(@"here");
but its not showing ShowFavViewController.xib file, although its showing “here” in log.
what i am doing wrong?
My first bet would be that
self.navigationControllerisnil(because the currently-displayed view controller is not a direct child of a navigation controller), orcontrollerisnil(because there was an error during initialization). Check both of those first.