Hi, How do i push more than 1 UIViewController at once?
you can push views in - (void)viewDidAppear:(BOOL)animated method in every view controller.
You can call [self.navigationController pushViewController: foo animated: NO] multiple times to build up a stack of controllers.
[self.navigationController pushViewController: foo animated: NO]