reactNative创建成功之后注意事项

1.用xcode打开项目时,需要先配置一些路径问题:

(1)把 Building Setting 里的Header Search Paths属性的值 "${PODS_ROOT}/Headers/Public/React"  - not-recursive 改为 recursive 

(2)在Seach Paths 中Header Search Paths配置

$(inherited) /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include $(SRCROOT)/../node_modules/react-native/React/**

(3)另一个问题就是需要把js资源打包成离线的bundle。

react-native bundle --entry-file index.ios.js --bundle-output ./ios/main.jsbundle --platform ios --assets-dest ./ios --dev false

生成即可。

你可能感兴趣的:(reactNative创建成功之后注意事项)