iPhone 模态视图控制器和设备方向
我快疯了。我有两个支持设备方向的视图控制器(A 和 B)。
- 在 A 肖像模式下,我模态地呈现 B =>工作良好
- 在 A 横向模式下,我模态地呈现 B =>不工作
- 当在 B 中时,如果我更改设备方向并关闭它 =>不工作
“不工作”是指显示的屏幕不符合预期(图形对象没有放置在应有的位置,或者没有出现在屏幕上)。我不知道我应该做什么来防止这种情况发生。
请帮忙!
I'm getting crazy. I have two view controllers (A and B) that supports device orientation.
- In A portrait mode, I modally present B => working well
- In A landscape mode, I modally present B => not working
- When in B, if I change device orientation and dismiss it => not working
By 'not working' I mean the displayed screen is not as expected (graphical objects are not placed where they should be, or do not appear on the screen). I do not know what I should do to prevent that from happening.
Please help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
进入界面巨石,在尺寸检查器中,为您的视图设置自动调整大小规则。并且不要忘记将它们设置为自动调整大小。
另外,您可以使用 - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation 方法在设备方向更改时设置视图坐标
go into interface boulder, in size inspector, set autosizing rules for your views. and dount forget to set them to autoresize.
allso, you can use - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation method to set your views coordinates when device orientation is changed