模仿UINavigationController的动画
我正在寻找一种方法来删除现有的 UIViewController 并添加新的。 我想以与 UINavigationController 相同的方式制作动画。
那为什么我不想使用 UINavigationController 呢?
- 我不需要任何工具栏或导航项
- 我不需要
UINavigationController
了解其历史记录(=推送控制器的堆栈)
它必须可以通过CATransition
实现代码> 但到底是怎么回事?
I'm looking for a way to remove an existing UIViewController
and add a new one.
I would like to animate that the same way as UINavigationController
does it.
Why do I not want to use UINavigationController then?
- I don't need any of the toolbars or navigation items
- I do not need the
UINavigationController
's awareness of its history (= the stack of pushed controllers)
It must be possible with CATransition
but how the heck?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以连接到 ViewWillAppear 方法并使用 CoreAnimation 将视图转换到屏幕。
You could hook up to ViewWillAppear method and use CoreAnimation to transition your view into the screen.