美文网首页
在oc中加入react-native

在oc中加入react-native

作者: 蒙牛神探 | 来源:发表于2017-07-07 13:54 被阅读9次

    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  

    相关文章

      网友评论

          本文标题:在oc中加入react-native

          本文链接:https://www.haomeiwen.com/subject/ixplhxtx.html