很高兴看到 Facebook 在 F8 2015 上开源 React Native。虽然他们提供react-native-cli
生成一个空的 React Native 项目,但我仍然不知道如何将 React Native 集成到我当前使用 Xcode 工作区和 CocoaPods 的项目中。
3 回答
您可以查看此演示: https ://github.com/dsibiski/react-native-hybrid-app-examples
在你开始使用 react native 之前,你应该阅读他们的文档:http: //facebook.github.io/react-native/docs/getting-started.html
然后我们应该运行npm install -g react-native-cli
安装命令行工具。
然后进入你的Xcode项目目录,创建package.json
文件。内容是这样的:
然后你npm install
在终端中运行。片刻之后你会发现一个目录node_modules
下一步是运行pod init
。Podfile
将被创建。所以只要像流动一样打开并配置它
您应该注意您在 Podfile 中配置的 React 路径。
然后运行pod install
。你会得到工作区。
您还需要服务器或离线捆绑包,请查看此
https://facebook.github.io/react-native/docs/running-on-device-ios.html
https://github.com/facebook/react-native/issues/240
之后您可能会遇到一些问题:
1.检测到命名冲突:
https://github.com/facebook/react-native/issues/3440
2.iOS上不可用(应用扩展).....
在 Podfile 中添加代码
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['APPLICATION_EXTENSION_API_ONLY'] = 'NO'
end
end
end
希望它有帮助:)
React Native 可作为 CocoaPod 使用,并作为 React Native 的一部分分发(内部node_modules
通过 npm 安装)。
与现有应用程序集成非常容易,您只需RCTRootView
在视图层次结构中添加您喜欢的任何位置的实例,您的 React Native 应用程序就会在其中运行。请参阅本指南。
关于如何在现有项目中开始使用 React Native 的完整分步指南在这里: https ://facebook.github.io/react-native/docs/integration-with-existing-apps.html