美文网首页
Xcode APP 支持iPadOS 的分屏

Xcode APP 支持iPadOS 的分屏

作者: 老鹰_ | 来源:发表于2020-11-09 10:07 被阅读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


结束,编译运行即可。

相关文章

网友评论

      本文标题:Xcode APP 支持iPadOS 的分屏

      本文链接:https://www.haomeiwen.com/subject/dlqlbktx.html