使应用程序启动并保持横向模式

发布于 2024-11-15 20:48:17 字数 31 浏览 4 评论 0原文

如何以横向模式启动我的应用程序,并保持屏幕旋转?

How can I start my app in landscape mode, and keep the screen rotation that way?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

断爱 2024-11-22 20:48:17
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
 return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft || 
   interfaceOrientation == UIInterfaceOrientationLandscapeRight);
} 
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
 return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft || 
   interfaceOrientation == UIInterfaceOrientationLandscapeRight);
} 
所谓喜欢 2024-11-22 20:48:17

实现视图控制器的 shouldAutorotateToInterfaceOrientation: 方法并返回 UIInterfaceOrientationIsLandscape(orientation);

还设置 Info.plistUIInterfaceOrientationUISupportedInterfaceOrientationsUIInterfaceOrientationLandscapeLeft 以及UIInterfaceOrientationLandscapeRightUIInterfaceOrientation 将采用单个值,因此分配其中一个值并将它们都分配给 UISupportedInterfaceOrientations

Implement the view controller's shouldAutorotateToInterfaceOrientation: method and return UIInterfaceOrientationIsLandscape(orientation);

Also set the Info.plist keys UIInterfaceOrientation and UISupportedInterfaceOrientations to UIInterfaceOrientationLandscapeLeft and UIInterfaceOrientationLandscapeRight. UIInterfaceOrientation will take a single value so assign one of them and assign both of them to UISupportedInterfaceOrientations.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文