vita-it commented on issue #1298: URL: https://github.com/apache/cordova-ios/issues/1298#issuecomment-1498847497
Hi everyone, problem partially solved for us. 1) What we had: WebApp based on Framework7 Cordova 11.0 iOs platform 5.1.1 - USES UIWebView by default - see https://cordova.apache.org/howto/2020/03/18/wkwebviewonly.html So the app has been using old UIWebView instead of WKWebView 2) What we have done: Update iOs platform to latest version ``` cordova platform rm ios cordova platform add ios ``` 3) Result: the app started using WKWebView (confirmed by XCode logs) The problem with Framework7 appeared in WKWebView - the blank screen instead application at the screen Solved with adding lines to config.xml ``` <preference name="scheme" value="app" /> <preference name="hostname" value="localhost" /> ``` ( solution from https://forum.framework7.io/t/cannot-open-page-on-ios/11793/3 ) 4) Finally: we are **still facing some css problems** (as I can see - regarding z-index or position) but the most part of css problems disappeared (were caused by using deprecated UIWebView). -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
