uiwebview

How to remove UIWebView component completely in current project?

走远了吗. 提交于 2020-08-08 12:32:07
问题 when submitting my latest build, Apple has a response with this warning. ITMS-90809: Deprecated API Usage - Apple will stop accepting submissions of apps that use UIWebView APIs . See https://developer.apple.com/documentation/uikit/uiwebview for more information. Fyi, I already migrate all UIWebView component to the WKWebView component in my project based on Apple recommendation. I tried grep -r UIWebView . and grep -r UIWebView /Path/To/Project/* to cleared all UIWeview in Project. but Apple

How to react to a global variable with Vue?

让人想犯罪 __ 提交于 2020-08-03 03:25:23
问题 I have a mobile webview that is injected with some global config object: Vue.prototype.$configServer = { MODE: "DEBUG", isMobile: false, injected: false, version: -1, title:"App", user: null, host: "http://127.0.0.1:8080" } Later the WebView inject this: Vue.prototype.$configServer = { MODE: "DEBUG", title: "App", version: "2.0", isMobile: true, injected: true, host: "http://127.0.0.1:8081" } And try to use it for the component: const HomePage = { key: 'HomePage', template: '#HomePage',