gpt4 book ai didi

iOS UINavigationController push/pop cross horizo​​ntal cover 动画

转载 作者:行者123 更新时间:2023-11-29 01:08:53 25 4
gpt4 key购买 nike

推送的 Controller 越过当前 Controller 。

结果如下: enter image description here图片0

实际上,我已经连接到这个应用程序,它使用一个名为 MMUINavigationController 的子类,我确信当前的操作是“pushViewController:animated:”,这是我 Hook 的界面。

调整.xm: enter image description here图片1

警报 View : enter image description here图片2

如何制作?

额外的,标准动画:

enter image description here

图3

推送 Controller 的导航栏

5

图4

最佳答案

这是一种解决方案:

  1. 隐藏导航 Controller 的导航栏
  2. 将导航栏添加到导航 Controller 的 Root View Controller
  3. 恢复导航 Controller 的滑动返回手势

对于最后一点,您可以添加平移手势识别器(建议)或简单地将导航 Controller 的 interactivePopGestureRecognizer 委托(delegate)设置为 nil:

self.navigationController?.interactivePopGestureRecognizer?.delegate = nil;

但请参阅此讨论以了解其含义:No Swipe Back when hiding Navigation Bar in UINavigationController

编辑:

满足要求的工作解决方案:只需在 viewWillAppear 中设置 navigationBarHidden 就可以了。

我在这里设置了一个示例演示:https://github.com/ldantona/NavigationBarExample

编辑 2:

刚刚找到这个库,它有什么帮助吗? https://github.com/MoZhouqi/KMNavigationBarTransition

The library can capture the background style of the navigation bar in the disappearing view controller when pushing, and when you pop back to the view controller, the navigation bar will restore the previous style, so you don't need to consider the background style after popping. And you also don't need to consider it after pushing, because it is the view controller to be pushed that needs to be considered.

希望对你有帮助

关于iOS UINavigationController push/pop cross horizo​​ntal cover 动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36002491/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com