Chiho

Results 6 comments of Chiho

跑Release。 在 Build Settings 的最下方找到 User-Defined,点击 + 按钮,添加一个键为 FLUTTER_BUILD_MODE ,值为 release 的配置。 Framework依赖的方式用`flutter build ios-framework --no-debug --no-profile --release`

原因看FlutterViewController的splashScreenView属性。 我现在是继承FlutterViewController设置背景色白色。 ``` - (void)installSplashScreenViewIfNecessary { self.splashScreenView = [UIView new]; self.splashScreenView.backgroundColor = [UIColor whiteColor]; self.splashScreenView.frame = self.view.bounds; [self.view addSubview:self.splashScreenView]; self.splashScreenView.translatesAutoresizingMaskIntoConstraints = NO; [self.view addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"H:|[splashScreenView]|" options:0 metrics:nil views:@{@"splashScreenView": self.splashScreenView}]]; [self.view...

我印象中是这个项目还是原来python的项目好像提供了命令行二维码的。

确实直接使用URL比较好,但是现在缓存也可以生效。 proxyURL会请求localServer,localServer会解析originURL再去请求,请求回来先存储originURL的CacheData,返回之后又存储proxyURL的CacheData,本地就有两份缓存。

修改后能获取准确的缓存进度,减少缓存占用。

The databaseQueue might be static? Using `loadTasksWithRawQuery` while NSURLSession calling back and updating database, it can cause database locking problem.