模拟器名称在Xcode

模拟器名称在Xcode

本文介绍了模拟器名称在Xcode 6.2中以id而不是os名称显示的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在安装Xcode 6.2之后安装了额外的ios模拟器(7.1),现在模拟器名称如下所示:

I've installed additional ios simulators(7.1) just after installing Xcode 6.2 and now the simulator names look like this:

如何更改名称?

推荐答案

Xcode使用设备版本来消除具有相同名称的设备的歧义。如果两个设备具有相同的名称和版本号,它将显示设备的UDID。

Xcode uses the device version to disambiguate devices with the same name. If two devices have the same name and version number, it will show the devices' UDIDs.

您的所有设备类型中有4个,所以我怀疑有些它们适用于相同的iOS版本。您应该删除一些重复项。退房

You have 4 of each of all your device types, so I suspect that some of them are for the same iOS version. You should delete some of the duplicates. Check out

xcrun simctl list

xcrun simctl delete

或转到Windows> Xcode中的设备删除或重命名设备。

or go to Windows>Devices in Xcode to delete or rename your devices.

这篇关于模拟器名称在Xcode 6.2中以id而不是os名称显示的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-02 02:26