2

我找到了一个杀死所有模拟器的命令,但不符合我的需要。给定 udid,我需要能够重新启动特定的模拟器。

我试过关机,然后使用启动模拟器

$ xcrun simctl shutdown <udid>
$ xcrun simctl boot <udid>
$ open -a simulator

但模拟器在执行这些命令后挂起。

Xcode 版本:10.3 模拟器版本:iPhone XS iOS:12.4

4

1 回答 1

1

我正在使用 xcode 11.3 但这似乎对我有用:

export UDID=$(xcrun simctl list devices | grep "(Booted)" | grep -E -o -i "([0-9a-f]{8}-([0-9a-f]{4}-){3}[0-9a-f]{12})")  
xcrun simctl shutdown $UDID
xcrun simctl boot $UDID

可能值得将其更新到最新的 xcode。

于 2020-01-08T10:30:10.040 回答