开发者

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.


  1. Have two view controllers
  2. In the first have the second as a subview
  3. Add your toolbar as a subview to the first and call bringSubviewToFront:
  4. 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

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜