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 - 获取给定地点/时区的当前日期和时间并将其与同一地点的另一个日期/时间进行比较的正确方法 2022-01-01
- navigator.geolocation.getCurrentPosition 在 Android 浏览器上 2022-01-01
- Cocos2d iPhone 非矩形精灵触摸检测 2022-01-01
- NSString intValue 不能用于检索电话号码 2022-01-01
- libGDX 从精灵或纹理中获取像素颜色 2022-01-01
- AdMob 广告未在模拟器中显示 2022-01-01
- iOS4 创建后台定时器 2022-01-01
- Android:getLastKnownLocation(LocationManager.NETWORK_PROVIDER 2022-01-01
- 通过重定向链接在 Google Play 中打开应用 2022-01-01
- 如何从 logcat 中删除旧数据? 2022-01-01
