编辑或创建Podfile,新增React引用
执行pod install –verbose –no-repo-update
然后新建一个简单的testview.ios.js文件
$ mkdir ReactComponent
$ touch ReactComponent/testview.ios.js
编辑testview.ios.js
开启React Native开发服务器
(JS_DIR=pwd
/ReactComponent; cd node_modules/react-native; npm run start – –root $JS_DIR)
这条命令会启动一个React Native开发服务器,用于构建我们的bundle文件。–root选项用来标明你的React Native应用所在的根目录。在我们这里是ReactComponents目录,里面有一个index.ios.js文件。开发服务器启动后会打包出index.ios.bundle文件来,并可以通过http://localhost:8081/index.ios.bundle来访问。
xcode项目中添加react native模块组件
模拟器运行程序
react-native run-ios
打开iOS文件AppDelegate.m
注释这行代码 :jsCodeLocation = [NSURL URLWithString:@”http://localhost:8081/ index.ios.bundle”];
替换成: jsCodeLocation = [[NSBundle mainBundle] URLForResource:@”main” withExtension:@”jsbundle”];
运行下载main.jsbundle到本地 http://localhost:8081/index.ios.bundle -o main.jsbundle
把main.jsbundle拷贝到项目中,添加引用