Is there a way to present a modal view controller that doesn\'t cover the tab bar of a UITabBarController?
Specifically I want to use the UIModalTransitionStyleParti
UIModalTransitionStylePartialCurl When the view controller is presented, one corner of the current view curls up to reveal the modal view underneath. On dismissal, the curled up page unfurls itself back on top of the modal view. A modal view presented using this transition is itself prevented from presenting any additional modal views.
And
hidesBottomBarWhenPushed A Boolean value indicating whether the bar at the bottom of the screen is hidden when the view controller is pushed on to a navigation controller.
@property(nonatomic) BOOL hidesBottomBarWhenPushed
Discussion
If YES, the bar at the bottom of the screen is hidden; otherwise, NO. If YES, the bottom bar remains hidden until the view controller is popped from the stack.
There are discussions around this topic on stackoverflow in the past