Guides
Integration With Existing Apps (集成到已存在的app上)
Platform:Objective-C
Key Concepts (核心概念)
React Native is great when you are starting a new mobile app from scratch. However, it also works well for adding a single view or user flow to existing native applications. With a few steps, you can add new React Native based features, screens, views, etc.
当你重头开始一个新的项目的时候React Native 是伟大的。然而,它也可以为现有的本地应用程序添加单个视图或用户流。通过几个步骤,您可以基于本机的功能、屏幕、视图等等添加React Native。
The keys to integrating React Native components into your iOS application are to:
将React Native 组件集成到iOS应用程序的关键是:
1.Understand what React Native components you want to integrate.
了解你想要集成的React Native 组件
2.Create a Podfile with subspecs for all the React Native components you will need for your integration.
创建一个对所有React Native组件管理的描述文件 subspecs podfile
3.Create your actual React Native components in JavaScript.
在JavaScript中创建具体的React Native 组件
4.Add a new event handler that creates a RCTRootView that points to
your React Native component and its AppRegistry name that you defined in index.ios.js.
添加一个事件处理程序用来创建一个RCTRootView 指定 React Native 组件 并在index.ios.js中定义 AppRegistry 的名字
5.Start the React Native server and run your native application.
启动Rect Native 服务 ,运用你的程序
6.Optionally add more React Native components.
可选添加更多的ReactNative组件。
7.Debug.
调试
8.Prepare for deployment (e.g., via the react-native-xcode.sh script).
准备部署(例如,通过react-native-xcode.sh脚本
9.Deploy and Profit!
部署和Profit
Prerequisites (前提准备)
General (一般情况下)
First, follow the Getting Started guide for your development environment and the iOS target platform to install the prerequisites for React Native.
首先,根据Getting Started guide来配置ReactNative 在iOS平台上的开发环境
首先,
To ensure a smooth experience, make sure your iOS project is under $root/ios.
为了确保顺利的进行,确保你的iOS项目是在$root/ios路径下
CocoaPods
CocoaPods is a package management tool for iOS and Mac development. We use it to add the actual React Native framework code locally into your current project.
CocoaPods 是iOS和Mac开发一个管理三方库的工具。在您当前的项目里我们使用它来添加和管理React Native framework 的代码代码
|
|
It is technically possible not to use CocoaPods, but this requires manual library and linker additions that overly complicates this process.(这在技术上是可能不使用CocoaPods,但这需要手动添加库链接的过程过于复杂。)
Our Sample App
Assume the app for integration is a 2048 game. Here is what the main menu of the native application looks like without React Native.

Package Dependencies
React Native integration requires both the React and React Native node modules. The React Native Framework will provide the code to allow your application integration to happen
React Native 集成需要 React 和 ReactNative 的节点模块。React Native Framework 将提供代码允许应用集成。
package.json
We will add the package dependencies to a package.json file. Create this file in the root of your project if it does not exist.
Normally with React Native projects, you will put files like package.json, index.ios.js, etc. in the root directory of your project and then have your iOS specific native code in a subdirectory like ios/ where your Xcode project is located (e.g., .xcodeproj).
通常对于React Native 的应用, 你将需要把package.json ,index.ios.js,等等 放在应用的根目录下,然后您的iOS 特殊的本地代码放在子目录ios/ 下 即 您的Xcode 项目的位置
Below is an example of what your package.json file should minimally contain.
Version numbers will vary according to your needs. Normally the latest versions for both React and React Native will be sufficient.
(版本号根据您的需要有所不同,通常React和React Native的最新版本是足够的)。
|
|
Packages Installation (安装包)
Install the React and React Native modules via the Node package manager. The Node modules will be installed into a node_modules/ directory in the root of your project.
通过node包管理器安装React和React Nativt 模块。node模块将被安装到你的项目的根目录node_modules。
|
|
React Native Framework
The React Native Framework was installed as Node module in your project above. We will now install a CocoaPods Podfile with the components you want to use from the framework itself.
Subspecs
Before you integrate React Native into your application, you will want to decide what parts of the React Native Framework you would like to integrate. That is where subspecs come in. When you create your Podfile, you are going to specify React Native library dependencies that you will want installed so that your application can use those libraries. Each library will become a subspec in the Podfile.
The list of supported subspecs are in node_modules/react-native/React.podspec. They are generally named by functionality. For example, you will generally always want the Core subspec. That will get you the AppRegistry, StyleSheet, View and other core React Native libraries. If you want to add the React Native Text library (e.g., for
Podfile
After you have used Node to install the React and React Native frameworks into the node_modules directory, and you have decided on what React Native elements you want to integrate, you are ready to create your Podfile so you can install those components for use in your application.
The easiest way to create a Podfile is by using the CocoaPods init command in the native iOS code directory of your project:
|
|
The Podfile will be created and saved in the iOS directory (e.g., ios/) of your current project and will contain a boilerplate setup that you will tweak for your integration purposes. In the end, Podfile should look something similar to this:
Podfile 文件将会在ios/文件目录下被创建
|
|
Pod Installation
After you have created your Podfile, you are ready to install the React Native pod.
|
|
Your should see output such as:
|
|
Code Integration
Now that we have a package foundation, we will actually modify the native application to integrate React Native into the application. For our 2048 app, we will add a “High Score” screen in React Native.
The React Native component
The first bit of code we will write is the actual React Native code for the new “High Score” screen that will be integrated into our application.
Create a index.ios.js file
First, create an empty index.ios.js file. For ease, I am doing this in the root of the project.
index.ios.js is the starting point for React Native applications on iOS. And it is always required. It can be a small file that requires other file that are part of your React Native component or application, or it can contain all the code that is needed for it. In our case, we will just put everything in index.ios.js
|
|
Add Your React Native Code
In your index.ios.js, create your component. In our sample here, we will add simple
|
|
RNHighScores is the name of your module that will be used when you add a view to React Native from within your iOS application.
The Magic: RCTRootView
Now that your React Native component is created via index.ios.js, you need to add that component to a new or existing ViewController. The easiest path to take is to optionally create an event path to your component and then add that component to an existing ViewController.
We will tie our React Native component with a new native view in the ViewController that will actually host it called RCTRootView .
Create an Event Path
You can add a new link on the main game menu to go to the “High Score” React Native page

Event Handler
We will now add an event handler from the menu link. A method will be added to the main ViewController of your application. This is where RCTRootView comes into play.
When you build a React Native application, you use the React Native packager to create an index.ios.bundle that will be served by the React Native server. Inside index.ios.bundle will be our RNHighScore module. So, we need to point our RCTRootView to the location of the index.ios.bundle resource (via NSURL) and tie it to the module.
We will, for debugging purposes, log that the event handler was invoked. Then, we will create a string with the location of our React Native code that exists inside the index.ios.bundle. Finally, we will create the main RCTRootView. Notice how we provide RNHighScores as the moduleName that we created above when writing the code for our React Native component.
First import the RCTRootView library.
|
|
The initialProperties are here for illustration purposes so we have some data for our high score screen. In our React Native component, we will use this.props to get access to that data.
|
|
Note that RCTRootView initWithURL starts up a new JSC VM. To save resources and simplify the communication between RN views in different parts of your native app, you can have multiple views powered by React Native that are associated with a single JS runtime. To do that, instead of using [RCTRootView alloc] initWithURL, use RCTBridge initWithBundleURL to create a bridge and then use RCTRootView initWithBridge.
When moving your app to production, the NSURL can point to a pre-bundled file on disk via something like [[NSBundle mainBundle] URLForResource:@”main” withExtension:@”jsbundle”];. You can use the react-native-xcode.sh script in node_modules/react-native/packager/ to generate that pre-bundled file.
Wire Up
Wire up the new link in the main menu to the newly added event handler method.

One of the easier ways to do this is to open the view in the storyboard and right click on the new link. Select something such as the Touch Up Inside event, drag that to the storyboard and then select the created method from the list provided.
Test Your Integration
You have now done all the basic steps to integrate React Native with your current application. Now we will start the React Native packager to build the index.ios.bundle packager and the server running on localhost to serve it.
App Transport Security
Apple has blocked implicit cleartext HTTP resource loading. So we need to add the following our project’s Info.plist (or equivalent) file.
|
|
Run the Packager
|
|
Run the App
If you are using Xcode or your favorite editor, build and run your native iOS application as normal. Alternatively, you can run the app from the command line using:
|
|
In our sample application, you should see the link to the “High Scores” and then when you click on that you will see the rendering of your React Native component.
Here is the native application home screen:

Here is the React Native high score screen:

If you are getting module resolution issues when running your application please see this GitHub issue for information and possible resolution. This comment seemed to be the latest possible resolution.
See the Code
You can examine the code that added the React Native screen on GitHub.
Creating a release build in Android Studio
You can use Android Studio to create your release builds too! It’s as easy as creating release builds of your previously-existing native Android app. There’s just one additional step, which you’ll have to do before every release build. You need to execute the following to create a React Native bundle, which’ll be included with your native Android app:
|
|
Don’t forget to replace the paths with correct ones and create the assets folder if it doesn’t exist!
Now just create a release build of your native app from within Android Studio as usual and you should be good to go!