iphone xcode横向模式默认情况下 [英] iphone xcode Landscape mode by default

查看:47
本文介绍了iphone xcode横向模式默认情况下的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何设置iPhone应用程序以横向模式启动?并保持这种状态

how can I set an iphone app to start in Landscape mode? and stays that way

推荐答案

将初始界面方向" app.plist条目设置为横向"(左或右主页按钮)并添加(或更可能取消注释和编辑)以下视图控制器方法:

Set the "Initial interface orientation" app.plist entry to "Landscape" (left or right home button) and add (or more likely, uncomment and edit) the following view controller method:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    // Return YES for supported orientations
    return UIInterfaceOrientationIsLandscape(interfaceOrientation);
}

这篇关于iphone xcode横向模式默认情况下的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆