UITabBarController iOS 的方向问题
我使用 UITabBarController 创建了 xib,因为我有 3 个导航控制器用于 3 个视图控制器。
我的问题是当我旋转时 shouldAutorotateToInterfaceOrientation 没有调用。
任何人都可以帮助我如何在 UITabBarContoller 视图中使用 shouldAutorotateToInterfaceOrientation 。
提前致谢...
i created xib with UITabBarController in that i have 3 navigationControllers for 3 view controllers.
my problem is when i rotate shouldAutorotateToInterfaceOrientation is not calling.
can any one help me how to use shouldAutorotateToInterfaceOrientation in UITabBarContoller views.
Thanks in advance...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于 UITabBarController,如果您希望视图旋转,则必须从所有视图控制器中的方法
-shouldAutorotateToInterfaceOrientation
返回 YES,否则它将不会旋转。In the case of a UITabBarController, if you want the view to rotate you have return YES from the method
-shouldAutorotateToInterfaceOrientation
in all of your view controllers, otherwise it won't rotate.