Partial Curl Modal Transition Style While Preserving Tool/Tab Bar
Is there a w开发者_如何学Pythonay to present a modal view controller that doesn't cover the tab bar of a UITabBarController?
Specifically I want to use the UIModalTransitionStylePartialCurl, but preserve the bottom bar, a la the iPhone maps app.
- Have two view controllers
- In the first have the second as a subview
- Add your toolbar as a subview to the first and call bringSubviewToFront:
- Present the modal in the second
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
精彩评论