关于iPad程序如何强制横屏

 我来答
纯洁的荼蘼249
2012-11-13 · 超过14用户采纳过TA的回答
知道答主
回答量:25
采纳率:0%
帮助的人:17.3万
展开全部
1、通过XCode设置“iPad Deployment info”,只选择横屏左和横屏右,部署测试后并没有生效,这种方法实质是在xxx_info.plist项目配置文件中添加如下信息:<keyUISupportedInterfaceOrientations~ipad</key<array<stringUIInterfaceOrientationLandscapeLeft
</string<stringUIInterfaceOrientationLandscapeRight
</string</array2、通过对每个nib文件在IB中设置orientation为landscape,此法也不生效。
3、重载shouldAutorotateToInterfaceOrientation:方法,
这种方式是可行
的。具体如下:- (BOOL)shouldAutorotateToInterfaceOrientation:(
UIInterfaceOrientation
)interfaceOrientation{
// Return YES for supported orientationsreturn((interfaceOrientation ==
UIDeviceOrientationLandscapeLeft
)||(interfaceOrientation ==
UIDeviceOrientationLandscapeRight));}如果第一种方式生效,那么比较完美。虽然第三种方式可以完全满足横屏的需求,但是实现起来比较stupid,需要在每个controller中都重载
shouldAutorotateToInterfaceOrientation:方法,当然也可以通过扩展UIViewController的方式来避免重复劳动。但是感觉也有点不太直接,期待有人指出sdk本身是否就有简捷方式支持。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式