找到 /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'))
网友评论