1、copy别人的代码运行报错file not found
解决方法:cd到项目目录
npm installreact-native upgradeyarn link复制代码
xcode设置项:
build setting-Always Search User Paths(Deprecated) 设置为YES复制代码
2、运行react-native 工程时,出错:
xcrun: error: unable to find utility "instruments", not a developer tool or in PATH复制代码
解决方法:在 终端执行如下命令
sudo xcode-select -s /Applications/Xcode.app/Contents/Developer/复制代码
3、打开远程调试总会出现 这么一段话
Remote debugger is in a background tab which may cause apps to perform slowly……复制代码
解决方法:原来,只要把那个chrome的Tab页保持最前,窗口不要最小化就好了。