Ricky Tan

Results 160 comments of Ricky Tan

1. Demo 中使用 `topViewController` 的地方需要改为 `rt_topViewController` 2. **UISplitViewController** 支持 **UINavigationController** 嵌入 **UINavigationController**,情况较为复杂,其中还涉及到一些私有方法: * `_allowNestedNavigationControllers` * `_setIsNestedNavigationController:` * `_prepareForNestedDisplayWithNavigationController:` 要完美支持,需要时间……

试试 https://github.com/rickytan/RTRootNavigationController/tree/issue199 分支,不能解决 返回按钮与收起展开并存的问题

两个导航栏的问题已经解决,再更新下 issue199 分支

情况太多,无法完美解决,UINavigationController 私有方法做了很多事

改 `self.rt_navigationControll.title` 试试?这里层级关系有点乱的

导航栏不显示,是因为 UINavigationController 被嵌入另一个 UINavigationController 时,系统自动调了 `setNavigationBarHidden:` ,否则有两个条了。你可以手动改回来。同时本项目的 RTRootNavigationController 的条永远是隐藏的,两种混用,就两个都没了

最简单的: 1. 都用系统自带的,它处理了各种情况 2. 禁用收起模式,勾上:![image](https://user-images.githubusercontent.com/1250207/39390437-1e648df8-4ac7-11e8-9db8-cefcc2961635.png)

很遗憾,之前努力尝试过,总有部分问题不能解决

UINavigationController 在 restore 过程中做了很多事情,如:恢复 app 杀掉前的所有页面栈等