Could not find iPhone X simulator

Could not find iPhone X simulator

在xcode升级后,使用react native,在run-ios时可能会报错

*Could not find iPhone X simulator

……
这个问题是大部分都是因为升级xcode造成的,不用急着去清缓存、重新npm之类的,直接修改一个文件即可解决问题。

找到 /node_modules/react-native/local-cli/runIOS/findMatchingSimulator.js文件

发现这行代码:

if (!version.startsWith('iOS') && !version.startsWith('tvOS'))

修改为:

if (!version.startsWith('com.apple.CoreSimulator.SimRuntime.iOS') && !version.startsWith('com.apple.CoreSimulator.SimRuntime.tvOS'))

再次run-ios试试,应该可以解决问题

    原文作者:双轮自行车
    原文地址: https://www.jianshu.com/p/a3a351b164ba
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞