Force iOS app to launch in landscape mode(强制 iOS 应用以横向模式启动)
问题描述
我正在为 iOS 5 开发一个应用程序,它必须在横向模式下运行.我的问题是我最初无法让它翻转.
I am developing an app for iOS 5, which have to run in landscape mode. My problem is that I cannot get it to flip initially.
我已经尝试将初始界面方向"设置为横向(右主页按钮)"并将以下方法添加到我的视图控制器:
I have tried the adding "Initial interface orientation" set to "Landscape (right home button)" and adding the following method to my view controller:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
}
我可以理解它应该如何工作.(我找到了代码 这里)
I can wrap my head around how it is supposed to work. (I found the code here)
我也想知道如何使用 Xcode 4.2 项目设置中提供的支持的设备方向",它似乎没有做任何事情.
I am also wondering how to use the "Supported Device Orientation" available in the Xcode 4.2 project setup, it does not seem to do anything.
我一直在浏览网站,但找不到解决我问题的示例.
I have been looking around the website and have not been able to find an example that solves my problem.
谢谢.
推荐答案
在应用程序的 Info.plist 文件中,添加 UIInterfaceOrientation
键并将其值设置为横向模式.景观方向,您可以设置值这把钥匙UIInterfaceOrientationLandscapeLeft
或者UIInterfaceOrientationLandscapeRight
.
In your application’s Info.plist file, add the UIInterfaceOrientation
key and set its value to the
landscape mode. For landscape
orientations, you can set the value
of this key to
UIInterfaceOrientationLandscapeLeft
or
UIInterfaceOrientationLandscapeRight
.
以横向模式布置视图,并确保其自动调整大小选项设置正确.
Lay out your views in landscape mode and make sure that their autoresizing options are set correctly.
覆盖您的视图控制器的 shouldAutorotateToInterfaceOrientation:
方法并仅对所需的横向和否用于纵向.
Override your view controller’s shouldAutorotateToInterfaceOrientation:
method and return YES only for the
desired landscape orientation and NO
for portrait orientations.
这篇关于强制 iOS 应用以横向模式启动的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:强制 iOS 应用以横向模式启动
基础教程推荐
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01