tags:

views:

24

answers:

2

Hi, How do i push more than 1 UIViewController at once?

A: 

you can push views in - (void)viewDidAppear:(BOOL)animated method in every view controller.

madhu
+1  A: 

You can call [self.navigationController pushViewController: foo animated: NO] multiple times to build up a stack of controllers.

St3fan