Rex Stegner

Results 8 comments of Rex Stegner

resolved. ``` if(UIDevice.currentDevice.userInterfaceIdiom == UIUserInterfaceIdiomPad) { cropController.modalPresentationStyle = UIModalPresentationFullScreen; } [picker dismissViewControllerAnimated:YES completion:^{ [[_window rootViewController] presentViewController:cropController animated:YES completion:nil]; }]; ```

` WARNING in ./node_modules/express/lib/view.js 81:13-25 Critical dependency: the request of a dependency is an expression @ ./node_modules/express/lib/application.js @ ./node_modules/express/lib/express.js @ ./node_modules/express/index.js @ ./src/main/index.js @ multi ./node_modules/electron-webpack/out/electron-main-hmr/main-hmr ./src/main/index.js` same issue

``` ``` 没有 defer 或 async,浏览器会立即加载并执行指定的脚本,“立即”指的是在渲染该 script 标签之下的文档元素之前,也就是说不等待后续载入的文档元素,读到就加载并执行。 ``` ``` 有 async,加载和渲染后续文档元素的过程将和 script.js 的加载与执行并行进行(异步)。 ``` ``` 有 defer,加载后续文档元素的过程将和 script.js 的加载并行进行(异步),但是 script.js 的执行要在所有元素解析完成之后,DOMContentLoaded 事件触发之前完成。

> # I figured it out!!! On Mac > 1. On Mac, if you used homebrew to install external libraries, copy the assimp folder in your /use/local/include directory > 2....