Partial Curl Modal Transition Style While Preserving Tool/Tab Bar

前端 未结 2 1090
小鲜肉
小鲜肉 2021-01-05 09:20

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

相关标签:
2条回答
  • 2021-01-05 09:49

    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 讨论(0)
  • 2021-01-05 09:51
    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
    0 讨论(0)
提交回复
热议问题