关闭模拟器时出错
Error shutting down simulator
在 xcrun simctl
文档中有一个条目:
xcrun simctl shutdown booted - Shutdown a device
Bun 当我从命令行调用它时,模拟器实际上并没有关闭而是被冻结了。
如何解决?
我发现的唯一解决方法是通过其 进程 ID 终止模拟器。
killall "Simluator"
Simulator.app 早于 CoreSimulator 并且仍然假定它拥有整个引导生命周期。您应该只对通过 'simctl boot'.
启动的设备使用 'simctl shutdown'
在 xcrun simctl
文档中有一个条目:
xcrun simctl shutdown booted - Shutdown a device
Bun 当我从命令行调用它时,模拟器实际上并没有关闭而是被冻结了。
如何解决?
我发现的唯一解决方法是通过其 进程 ID 终止模拟器。
killall "Simluator"
Simulator.app 早于 CoreSimulator 并且仍然假定它拥有整个引导生命周期。您应该只对通过 'simctl boot'.
启动的设备使用 'simctl shutdown'