禁用纵向模式
我正在开发 iPhone 应用程序,该应用程序只能在横向模式下运行。但是,当我旋转设备或模拟器时,viewContoller 的模式从横向变为纵向。我希望 viewController 保持横向模式,尽管设备或模拟器是纵向的。我怎样才能做到这一点?提前致谢。
I am developing an iPhone application and the application should work only in landscape mode. But, when I rotate the device or simulator, the viewContoller's mode changes from landscape to portrait. I want the viewController to maintain in landscape mode, though the device or simulator is portrait. How could I make this happen? Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在视图控制器中重写此方法:
Override this method in your view controller:
将其添加到您的
ViewController.m
Add this to your
ViewController.m
info_plist 中的更改..
支持的界面方向 仅设置横向
change in info_plist ..
Supported interface orientations Set only landscape
在所有 ViewController 中覆盖此方法:
}
另请参阅仅支持横向界面方向
Override this method in all your ViewControllers:
}
And also see Only support for landscape Interface orientation