Arclin

Advocate Technology. Enjoy Technology.

0%

在中文情况下git status\344\272\247\345\223\201\351\234\200\346\261\202 差不多这样的。

解决这个问题方法是:

git config --global core.quotepath false

前言

Hybrid App 混合开发意思是在web-app、native-app这两者之间的app开发,兼具“Native App良好用户交互体验的优势”和“Web App跨平台开发的优势”, 并且也方便我们进行热修复.

阅读全文 »

三步即可

在项目根目录使用终端执行

1
$ curl http://localhost:8081/index.ios.bundle -o main.jsbundle

AppDelegate.m 找到这一行并注释

1
jsCodeLocation = [NSURL URLWithString:@"http://localhost:8081/index.ios.bundle?platform=ios&dev=true"];

AppDelegate.m 写上或反注释这一行

1
jsCodeLocation = [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"];