You must use this code
NGViewController *ngView = [[NGViewController alloc]initWithNibName:Nil bundle:Nil]; [self presentViewController:ngView animated:NO completion:nil];
after you wrote this line when then you want to go to another page using the view controller
UINavigationController *navigationController = [[UINavigationController alloc]initWithRootViewController:ngView]; [self.navigationController pushViewController:navigationController animated:YES];
I hope you solve this problem with this code. Good luck.
source share