如何将 iOS 模拟器上的状态栏更改为 Apple 默认时间:9:41

How to change status bar on iOS Simulator to Apple default like time: 9:41

我想用不同的设备截屏。是否有终端命令来手动更改状态栏。我知道有 xcrun 但我该如何使用它?

这是您需要在终端上 运行 的命令:

xcrun simctl status_bar booted override --time "9:41" --batteryState charged --batteryLevel 100 --cellularBars 4

这将更改所有已启动模拟器的值。

您可以用设备名称(例如“iPhone 11 Pro”)或模拟器的 UUID 替换 'booted'。

xcrun simctl list | grep Booted 查找 运行ning 模拟器的 UUID)

瞧瞧!如果需要,您还可以更改时间和电池的值:)