React Native开发React Native开发经验集React Native实践

xcode升级后,报Could not find iPhone

2019-07-02  本文已影响4人  逸笛

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试试,应该可以解决问题。

图片.png
上一篇 下一篇

猜你喜欢

热点阅读