views:

79

answers:

1

How can i create a chain of viewcontrollers and push them into navigation item without showing them? On the other side is it possible to move backward on the viewcontrollers stack of the navigation item without activating and showing viewcontrollers?

Thanks,

Nava

A: 

You can push a viewController onto a navController using -pushViewController:animated: and setting the animated argument to NO. In this way, you can push a series of view controllers, and only animate the last one. Is this what you're trying to do? You can also pop them off with the animated flag set to NO.

Ben Gottlieb
Nava Carmon
Thanks, probably that's what i'm going to do...
Nava Carmon