处理前一个 UIViewController 的方向
我正在开发一个 iPhone 应用程序。我的活动 UIViewController 是 vc1。 vc1 的 shouldAutorotateToInterfaceOrientation 方法返回 YES,因此会自动为其视图处理设备方向。
添加到此视图的所有子视图都已正确设置自动调整大小蒙版以适应方向。
视图的框架不会更新以适应以下情况的方向:
- 推另一个 UIViewController 说 vc2
- 更改设备方向
- 弹出 vc2
新方向不会反映在 vc1 的视图中。
我可以注册方向更改通知并手动将框架设置为视图。有什么方法可以自动处理这个问题吗?
I am developing an iPhone application. My active UIViewController is vc1. The shouldAutorotateToInterfaceOrientation method of vc1 returns YES and hence the device orientation is handled for its view automatically.
All the subviews added to this view has autoresizing masks set properly to fit the orientation.
The view's frame is not updated to fit the orientation for the following scenario:
- Push another UIViewController say vc2
- change the device orientation
- pop vc2
The new orientation is not reflected for view of vc1.
I can register for orientation change notification and manually set the frame to the view. Is there any way that handles this automatically?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我也这么做了。我认为没有任何方法可以自动执行此操作。
您可以发送有关设备方向的通知,或者可以在 ViewWillAppear 中检查当前设备方向并相应地设置框架。
I did the same. I don't think there is any way you can do this automatically.
You can probably send in a notification about the device orientation or you can check the current device orientation in
ViewWillAppear
and set the frame accordingly.您的应用程序 viewController 结构到底是什么?
确保您使用的是navigationController(如果您愿意,可以隐藏navigationBar)。那么它应该就可以工作了。
What exactly is your app viewController structure?
Make sure you are using a navigationController (you can have the navigationBar hidden if you like). Then it should just work.