1,首先xcode项目要支持cocoapods,参考https://blog.csdn.net/u013434605/article/details/51086533
2,安装以及配置RN环境,参考https://reactnative.cn/docs/0.31/getting-started.html#content
一切都配置好后
3,进入工程根目录中,执行npm init
4,执行npm install react --save
初始化react
5,执行npm install react-native --save
初始化react-native
会在项目中生成node_modules文件夹
、package.json文件
6,在xcode项目中,配置podfile,增加内容如下
pod 'React', :path => './node_modules/react-native', :subspecs => [
'Core',
'RCTImage',
'RCTNetwork',
'RCTText',
'RCTWebSocket'
]
7,终端执行pod install'Core',
'RCTImage',
'RCTNetwork',
'RCTText',
'RCTWebSocket'
]
8,使用webStorm打开xcode项目,选择rn相关的文件,开发即可。