2017-03-17 57 views
0

Integration With Existing Apps, 我按照教程,嵌入到本機應用程序,但如何獲得與cocoapods本地依賴關係?

# The target name is most likely the name of your project. 
target 'NumberTileGame' do 

    # Your 'node_modules' directory is probably in the root of your project, 
    # but if not, adjust the `:path` accordingly 
pod 'React', :path => '../node_modules/react-native', :subspecs => [ 
    'Core', 
    'RCTText', 
    'RCTNetwork', 
    'RCTWebSocket', # needed for debugging 
    # Add any other subspecs you want to use in your project 
    ] 

end 

我怎樣才能得到的依賴的名字嗎?我開始了一個原生的項目演示並嵌入到本地iOS應用程序中,但它提示缺少模塊。 errorScreenImage。 SomeBody幫助!

回答

0

這是一個依賴性問題,但不是關於cocoapods.錯誤說你在main.js中使用react-native-tab-navigator,但它找不到。

請按照GitHub的README react-native-tab-navigator

或者,如果你想有一個快速的解決方案:

  1. CD node_modules,並試圖找到反應本土片定位導航文件夾,如果不存在,重新安裝搭配:

npm install react-native-tab-navigator --save

2.查看main.js,你是否從'react-native-tab-navigator'導入TabNavigator;?

如果您想獲得進一步的幫助,請向他人展示您的代碼。

+0

非常感謝!有用!謝謝! – mgfjx

+0

記得給我點個贊哦~~~~~~ – njafei

+0

哈哈原來是自己人,早說啊,順便問一下react-native-tab-navigator這個組件,tab項怎麼放原生控制器 – mgfjx