如何在 iPad 模拟器上启用 Stage Manager

问题描述 投票:0回答:1

“舞台管理器”选项在 iPadOS 16.4 上可用,但在 iPadOS 17 后消失。如何在 iPadOS 17 后的 iPad 模拟器上使用舞台管理器?

ios ipad ios-simulator ipados
1个回答
0
投票

广为人知的方法是(在Apple论坛上找到):

xcrun simctl spawn booted defaults write -g SBChamoisWindowingEnabled -bool true

它对于新创建的模拟器很有用。但是,我发现它在几个月前创建的模拟器上不起作用。在浏览了模拟器配置文件后,我发现这是因为

SBChamoisWindowingEnabled
YES
中的
.GlobalPreferences.plist
,而
NO
中是
com.apple.springboard.plist
。所以答案是:

xcrun simctl spawn booted defaults write -g SBChamoisWindowingEnabled -bool true
xcrun simctl spawn booted defaults write com.apple.springboard SBChamoisWindowingEnabled -bool true

无需重启模拟器即可立即工作!

© www.soinside.com 2019 - 2024. All rights reserved.