It looks like you are abusing the design of the tab bar. Each tab in the tab bar should have its own UINavigationController, and not use one controller for each tab.
Also, in my experience, it is best to present a modal view controller using the lower-level view of AppDelegate. That is, the view that was added to the UIWindow object when the application started.
source share