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?