Xcode APP 支持iPadOS 的分屏

2020-11-09  本文已影响0人  老鹰_

iPadOS(iOS13) 分屏功能是系统提供的,但是有些APP在横屏时,无法和另一个APP进行屏幕对半分割,需要改动如下

第一点

在 info.plist ,找到对应的key,注意是 pad 这里
看看是不是 4项

再次提醒 pad,4项

  <key>UISupportedInterfaceOrientations~ipad</key>
    <array>
        <string>UIInterfaceOrientationPortrait</string>
        <string>UIInterfaceOrientationPortraitUpsideDown</string>
        <string>UIInterfaceOrientationLandscapeLeft</string>
        <string>UIInterfaceOrientationLandscapeRight</string>
    </array>

第二点

*在 info.plist 中
找到key是 Requires Full Screen 改为 NO


结束,编译运行即可。

上一篇 下一篇

猜你喜欢

热点阅读