Wondering what the best approach is to read HTML/JS within a webview in a native app that works for:
- iOS
- Android
- Windows Phone
Can all three platforms read the content of a web view, or does the sandbox prevent that from happening?
Wondering what the best approach is to read HTML/JS within a webview in a native app that works for:
Can all three platforms read the content of a web view, or does the sandbox prevent that from happening?
On iOS you can fairly easy communicate with web view injecting some JS. In opposite direction calling messages is a bit more complicated, but still possible, when you create a kind of bridge between JS and iOS.
I think on Android is probably easier. Don't know about Windows Phone.