1. 在桌面或者其他路径下建一个文件夹 A
2 建一个xcode项目 B 放到A中
3. 搭建开发环境 参考react-native中文网
4 . 建一个react-native程序 把package.json、index.ios.js拷贝到A中 修改package.json的name为工程项目的名字
5 . 在A文件的路径下 npm install 生成node_modules文件
6 .CocoaPods集成React Native (cocoapods安装先不作说明)
7 用命令行工具进到xcode工程路径下 pod init 然后open -a Xcode Podfile
在Podfile 文件中 写入 platform :ios,’8.0’
target “ProjectName” do
pod 'React', :path => ‘A文件路径/node_modules/react-native', :subspecs => [
'Core',
'ART',
'RCTActionSheet',
'RCTAdSupport',
'RCTGeolocation',
'RCTImage',
'RCTNetwork',
'RCTPushNotification',
'RCTSettings',
'RCTText',
'RCTVibration',
'RCTWebSocket',
'RCTLinkingIOS',
]
pod install
配置已OK
网友评论