装环境
安装Homebrew,
mac的套件管理器
1 | /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" |
安装Node.js
1 | brew install node |
安装react-native-cli
。 React Native的命令行工具
1 | npm install -g react-native-cli |
安装Watchman
。Facebook提供的监视文件系统变更工具
1 | brew install watchman |
创建React Native项目
定位的指定文件夹,创建React Native项目
1 | react-native init firstReactNative |
终端内运行项目
1 | //进入到项目文件夹中 |
也可以在Xcode中点击firstReactNative/ios/firstRectNative.xcodeproj
运行
编写代码并运行
用编译器打开index.ios.js
文件,修改相应代码
在iOS模拟器上command + R
刷新运行app