bundle
文件夹,再执行以下命令打包文件到bundle
文件夹内
react-native bundle --entry-file App.js --platform ios --bundle-output ./iOS/bundle/index.jsbundle --assets-dest ./ios/bundle
把文件夹拖入到xcode中,文件夹引入的方式,引入后是个蓝色的文件夹图标。
AppDelegate
中jsCodeLocation
改为以下代码,意为加载本地文件
jsCodeLocation = [[NSBundle mainBundle] URLForResource:@"bundle/index" withExtension:@"jsbundle"];