UITabBarController With UINavigationController "more" Tab Issue
- by Medlay
UITabBarController with UINavigationController "more" tab issue
There is a problem with using UINavigationController in UITabBarController. I have a TabBar with 6 items. Of course, a standart item "more" appears, and there are two UINavigationControllers that didn't fit in a TabBar. The core of the problem is: when I'm working with visible items (a first four), UIViewController can be pushed in an UINavigationController:
[self.navigationController pushViewController:userDataViewController animated:YES];
If you call on in "more" and rearrange items in such way, that a visible UINavigationController gets into "more", when calling on it userDataViewController appears. This userDataViewController is the last, which has got in a stack and a Back button leads back to "more", but not to the controllers, that were before a userDataViewController appeared.
I understand that in fact a selector pushViewController is called from "more", and it pushes my UINavigationController in a stack, and it's not good. Maybe, someone has faced such problem and could help me to solve it?
Thank you forward.