Adobe Air 23 + iOS 10.1.1 全屏

Adobe Air 23 + iOS 10.1.1 full screen

我正在使用 Air 最新版本以及 Starlingfeathers 最新版本。

我的问题是我的应用程序如何在 iPhone 6 最新 iOS(版本 10.1.1)上无法获得完整高度 我也在使用启动图像并且它们在设备上正常工作。参见 iPhone screen photo。

有解决此问题的想法吗?

我知道的最佳做法是使用父容器代替阶段,阶段的根子级将成为所有内容的父级

例如root_container

stage.align = StageAlign.TOP_LEFT;
stage.scaleMode = StageScaleMode.NO_SCALE;
root_container.width = stage.fullScreenWidth;
root_container.height = stage.fullScreenHeight;

注意:如果您的应用对方向变化负责,您必须按您的意愿处理它们