如何实现 UIViewControllerContextTransitioning 兼容交互转场

How to implement UIViewControllerContextTransitioning compatible with interactive transitions

我正在创建自定义导航控制器。确实,我想要一个 UINavigationController 和一个 "content view" ,它不一定是全屏,但可以是任何视图。

由于我还想使用自定义动画进行过渡和交互式过渡,因此我需要实施协议 UIViewControllerContextTransitioning

这个协议看起来很复杂,我正在寻找好的建议(来自有经验的用户)and/or 此类实现的示例。

What are your advice and/or some resources for doing this?

目前我找到的唯一资源是 objc.io 网站上的 github project但他们不处理交互式转换。

看看这个 GREAT article with an associated github project. It is the continuation of objc.io article

这是迄今为止(2015 年 5 月)也是我找到的关于该主题的最佳资源。