UIViewController contain UINavigation itself?
Like, at first I have a UIViewControllerABC , then I click a button -> that view have UInavigationController.
I tried
[code]
in button action
UINavigationController *naviController = [[UINavigationController alloc]initWithRootViewController:self];
[code]
My purpose is when I use that button, the new uiviewControllerX appear, but it have navigation to switch back my UIViewControllerABC
|