Hi,
I'm also struggling with iOS 10 & Cordova (+cocoon.io & cocooncanvasplus plugin)
When I do a simple cordova export, my app only displays a blank screen on iOS 10 (but works on iOS 8 & 9)
If I change this in c2runtime.js
this.isWKWebView = !!(this.isiOS && this.isCordova && window.indexedDB);
to:
this.isWKWebView = false;
My app is working on iOS 10, but then the screen scale is displayed incorrectly
http://i.imgur.com/uUOixFs.png
My project settings:
http://i.imgur.com/zwMD3lw.jpg
(using C2 r233 64bits)
I'm not sure how to enable WKWebView, should I just check the box in the Cordova export option ?
Should I also change the line in c2runtime.js to this.isWKWebView = true; ?
Do I have anything to do with Cocoon ?
Or is there any other way to make my app working correctly without WKWebView on iOS 10 ?
Thank you