- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开发一款使用 Adobe Air 打包的 iOS 应用程序。我正在尝试将 InterfaceOrientation 设置为 info.plist。
所以在我的 app.xml 中添加了 UIInterfaceOrienation,但是当我尝试创建 iOS 包时,它给了我“application.iPhone.InfoAdditions contains an invalid value”错误。
这就是 app.xml 的样子
<iPhone>
<InfoAdditions>
<![CDATA[
...... other values
<key>UIInterfaceOrientation</key>
<string>UIInterfaceOrientationLandscapeRight</string>
]]>
</InfoAdditions>
不太确定我在这里遗漏了什么。有什么想法吗?
最佳答案
我认为您无法通过 air packager 执行此操作。
恕我直言,你最接近的就是这个
肖像假的
您建议的解决方案适用于 native 开发,但(目前)还不能使用 air packager。
我认为您将能够通过如下代码更改它:stage.setOrientation( StageOrientation.ROTATED_LEFT );
来源:http://polygeek.com/4301_air-mobile_playing-with-stage-orientation-in-mobile-air-apps
关于ios - UIInterfaceOrientation 信息.plist,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13607354/
我正在使用 Xcode 5.0.2 并在尝试编译我的 Objective-C 代码时收到以下警告: Implicit conversion from enumeration type 'enum UI
我的 iOS 应用同时支持横向和纵向。初始屏幕、登录 View 和主页 View 都是纵向的。 现在,如果我将设备旋转到横向并启动应用程序,所有三个 View 都是并保持纵向,这是需要的。但是如果我以
我在 Storyboard中有 5 个 View 。我希望每个 View 方向都不同,例如一个 View 将是 UIInterfaceOrientationLandscapeRight另一个 View
我希望我的 iPhone 应用程序在全局范围内表现得好像只允许 UIInterfaceOrientationPortrait 一样。但与此同时,我希望它能够了解物理方向,以便仅在显示器的有限区域内以特
我不确定这是一个错误还是我可能做错了什么,但是当我在没有旋转设备的情况下以纵向模式启动我的应用程序并运行此代码时 if(UIInterfaceOrientationIsPortrait([[UIDev
我正在尝试捕捉 UIInterfaceOrientation 的变化。我知道如何使用 UIDeviceOrientation 来做到这一点,但我想阻止横向左/右和纵向以外的任何事情。 我使用的是 UI
我希望我的应用支持 PortraitUpSideDown 方向。我更改了 info.p 列表以反射(reflect)这一点,并尝试在一个 View 上实现更改作为测试 - (BOOL)shouldAu
在我的应用程序中,我使用 UITabbarController,它可以完美旋转到所有 View Controller 中的所有 UIInterfaceOrientations。但是当我之后将 UIVi
我正在开发一款使用 Adobe Air 打包的 iOS 应用程序。我正在尝试将 InterfaceOrientation 设置为 info.plist。 所以在我的 app.xml 中添加了 UI
我尝试检查当前呈现的 View Controller 的 UIInterfaceOrientation,但出于某种原因,它总是返回横向。 UIInterfaceOrientation current
UIInterfaceOrientation 有一个奇怪的问题。在我的项目中有许多不同的 View ,其中一些应该以横向模式旋转,而另一些则不应该。问题是所有不是使用 Storyboard 创建的 V
我使用以下代码来检索方向: let currentOrientation = UIApplication.shared.statusBarOrientation 但在某些情况下检索到的值是:__C.U
我想知道我设备的当前方向。 if([[UIDevice currentDevice] orientation] == UIInterfaceOrientationPortrait) {
当我调试我的应用程序时,我想打印出局部变量的值 orien类型 UIInterfaceOrientation . 我试过了 print("\(orien")但它打印: UIInterfaceOrien
在 iOS 8 中,他们为 UIInterfaceOrientationUnknown 添加了设备方向检测(查看预发布文档 here) UIInterfaceOrientationUnknown Th
当我将模拟器从纵向旋转为横向时,标题不旋转。我想使用 UIInterfaceOrientation 随 View 旋转一起旋转标题。 最佳答案 @renuga 我认为你需要在 View Control
我使用 UIWebView 创建了一个简单的 iPhone 应用程序(缩放页面以适合 = YES,shouldAutorotateToInterfaceOrientation = YES)并加载了一个
在这种情况下,我不需要指定方向,我只需要检测它,但我遇到了麻烦。我有条件代码只能在纵向工作,如果设备处于横向,我需要做其他事情。由于 deviceOrientation 不一定与 interfaceO
当我将 View Controller 的 View 放在顶级 View Controller 中时,UIInterfaceOrientation我从嵌套 View Controller 得到的不正确
在我的 UIViewController 中 - (NSUInteger)supportedInterfaceOrientations { return UIInterfaceOrientat
我是一名优秀的程序员,十分优秀!