当我从xcode 6中选择模拟器时,我将获得多个选项来选择模拟器,但模拟器带有UDID。请参见下图,请帮帮我。提前致谢。
最佳答案
xcode 10中的上述步骤无效,请使用以下步骤:xcrun simctl shutdown all
关闭所有设备xcrun simctl list devices|grep -v "unavailable"|grep -Eo "[0-9A-F\-]{36}"
列出所有可用的设备xcrun simctl list devices|grep -v "unavailable"|grep -Eo "[0-9A-F\-]{36}"|xargs xcrun simctl delete
删除所有设备(注意:这是一行)
更多细节xcrun simctl help
关于iphone - ios模拟器以UDID出现在xcode 6中,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26211593/