Hi
normally it IS possible.
You assign to the TabBar a NavigationController instead of a normal ViewController. And to THAT NavigationController you add your normal ViewController.
Like:
ViewController -> NavigationController -> TabBarController.
When you now write [myNavigationController presentModal....] and so forth, your to-be-presented-ViewConroller will be presented underneath the tabBar, so that the Tab bar stays at the top.
Hope that helps.
Me
|