iPhone UITabBarController 和旋转视图
我目前正在尝试在我的应用程序中实现 UIOrientation,到目前为止它对于每个单独的 ViewController 都运行良好。
然而,如果我... 加载视图 1 并将其设置为纵向。 然后转到视图2。 然后将手机旋转至横向。 然后返回视图 1。
视图 1 中的视图仍处于纵向模式,并且从屏幕底部掉落。
(即 420 x 320 屏幕上的 320 x 420 帧)
是否可以旋转视图或对其进行管理,以便当我按下视图时,它会计算出它应该处于哪个方向并自行排序?
感谢您的任何帮助。
奥利弗
I'm currently trying to implement UIOrientation in my app and it works well so far for each individual ViewController.
However, if I...
Load View 1 and set it to portrait.
Then go to view 2.
Then rotate the phone to landscape.
Then go back to view 1.
The view in view 1 is still in portrait mode and falling off the bottom of the screen.
(i.e. a 320 by 420 frame on a 420 by 320 screen)
Is there away to rotate a view or manage this so that when I press a view it works out what orientation it should be in and sorts itself out?
Thanks for any help.
Oliver
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
嗯,这很容易!
我设置了 UITabBarControllerDelegate,然后设置了名为 didSelectViewController 之类的协议方法。
然后我在那里运行 willRotateTo 等等,并将 toOrientation 设置为我的设备方向。
Well, that was easy!
I set the UITabBarControllerDelegate and then set the protocol method called something like didSelectViewController.
In there I then run willRotateTo blah whatever and set the toOrientation to my device orientation.