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
网友评论