Cordova applications use the UIWebView component to download safari-based applications ( WebKit2 ), but it does not include the Nitro javascript mechanism (one application for Safari), so your corridor applications will be slower than the Safari application executing the same code.
After exiting Cordova 4.0, it will include βplug-in webviews,β which means you can choose which WKWebView use from any of the WKWebView available on the SDK (right now UIWebView and WKWebView )
If you cannot wait for cordova 4.0, you can use the WKWebView plugin
WKWebView also based on safari, but it uses the Nitro javascript engine, so it works as a Safari application
Here you can read the full article on the comparison between UIWebView and WKWebView
The main difference is that, as I mentioned earlier, WKWebView uses the Nitro javascript engine, which is faster than the one used in UIWebView , and WKWebView supports IndexedDB and ObjectStore ArrayBuffer .
CSS compatibility and rendering are the same for UIWebView, WKWebView, and Safari
source share