UINavigationController 在后退按钮单击时向下滚动
我正在开发带有多个导航控制器的 iPhone / iPad 应用程序。当我在设备处于横向模式时单击视图的后退按钮时,前一个视图会垂直滚动到屏幕中,而不是像往常一样水平滚动。
推送动画始终水平工作,正如它应该的那样。
是什么导致了这个奇怪的问题?
谢谢,
阿德里安
I'm working on an iPhone / iPad app with several navigation controllers. When I click a back button of a view while the device is in landscape mode, the previous view scrolls vertically into the screen, instead of scrolling horizontally as usual.
Push animations always work horizontally, as it should be.
What could be causing this weird problem?
Thanks,
Adrian
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您确定您要返回的视图控制器已设置为正确处理旋转吗?
我在使用 MonoTouch.Dialog 时遇到了类似的问题,直到我添加
Autorotate = true; 到我的应用程序内的每个(非叶)
DialogViewController
。Are you sure the view controller, you're getting back to, is set to deal with rotation properly ?
I had a similar issue using MonoTouch.Dialog until I added
Autorotate = true;
to every (non-leaf)DialogViewController
inside my application.