使应用程序启动并保持横向模式
如何以横向模式启动我的应用程序,并保持屏幕旋转?
How can I start my app in landscape mode, and keep the screen rotation that way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何以横向模式启动我的应用程序,并保持屏幕旋转?
How can I start my app in landscape mode, and keep the screen rotation that way?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
实现视图控制器的
shouldAutorotateToInterfaceOrientation:
方法并返回 UIInterfaceOrientationIsLandscape(orientation);还设置
Info.plist
键UIInterfaceOrientation
和UISupportedInterfaceOrientations
到UIInterfaceOrientationLandscapeLeft
以及UIInterfaceOrientationLandscapeRight
。UIInterfaceOrientation
将采用单个值,因此分配其中一个值并将它们都分配给UISupportedInterfaceOrientations
。Implement the view controller's
shouldAutorotateToInterfaceOrientation:
method andreturn UIInterfaceOrientationIsLandscape(orientation);
Also set the
Info.plist
keysUIInterfaceOrientation
andUISupportedInterfaceOrientations
toUIInterfaceOrientationLandscapeLeft
andUIInterfaceOrientationLandscapeRight
.UIInterfaceOrientation
will take a single value so assign one of them and assign both of them toUISupportedInterfaceOrientations
.