views:

26

answers:

1

Hi

is there any way to release rootViewController in UInavigationController and set new view Controller as a root View Controller ???

+1  A: 

You can use setViewControllers:animated: to change view controllers that are in the navigation controller's stack. The root view controller is at index 0.

Robot K