带有 NavigationController 的 iPhone 自定义动画
我使用 UINavigationController 来滚动我的应用程序中的一些内容。在某一时刻,我不希望控制器从侧面淡入新表格,我希望它从底部淡入。我该怎么做?
如果这是不可能的,我正在寻找一种方法来删除 UINavigationController 的子元素,而不需要标准的向左淡出,这是通过按 UINavigationController 上的后退箭头来执行的。
I use a UINavigationController for scrolling some contents in my App. At one point I don't want the controller to fade in the new table from the side, I want it to fade in from bottom. How can I do this?
If that is not possible, Im looking for a way to remove the child element of the UINavigationController without the standard fade out to the left, which gets executed by pressing the back arrow on the UINavigationController.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
那么你可能不应该使用 UINavigationController 。您可以创建自己的 UIViewController 子类,通过您控制的转换显示其他视图控制器或视图。例如,可以使模态视图控制器从底部滑入。
You probably should not use UINavigationController then. You can make your own subclass of UIViewController that shows other view controllers or views through transitions you control. A modal view controller can be made to slide in from the bottom for example.