1、iOS中集成RN
https://reactnative.cn/docs/getting-started.html
https://www.jianshu.com/p/798684be04f4
2、React Native与iOS原生交互
https://www.jianshu.com/p/5f5c50638b2e
3、创建不同的RN项目 https://blog.csdn.net/niuba123456/article/details/81879750
1、先在终端里新建一个RN项目
#假如在桌面创建项目cd~/desktop
#创建项目,需要一些时间,把[项目名]换成你自己的项目名
react-native init [项目名]
初始化的时候报错You are currently running Node v6.11.0 but React Native requires >=8.3. Please use a supported version of Node.提示版本太低那么我们就更新node,更新命令
一种方式是尝试更新 brew install node
二种是创建创建低版本的。提示:你可以使用--version参数(注意是两个杠)创建指定版本的项目。例如react-native init MyApp --version 0.44.3。注意版本号必须精确到两个小数点。
网友评论