I am developing an learning type application for iOS using HTML5/PhoneGap, but facing some problem in zoom in zoom out features.
As I know PhoneGap runs app inside the UIwebview. so Zoom in Zoom out feature should work automatically in PhoneGap, but it is not working, although it works on Safari browser.
Could some please guide how can I implement this feature.
Although I also set uiwebview mutitouch enabled.
inside mainviewcontrollers webviewdidfinish loading..
[theWebView setMultipleTouchEnabled:YES];
Thanks in advance.
Please guide me
There is an another alternate solution I got. It needs to change the main/Root index.html file. Add a meta tag like this
And no need to edit any file in native code like mainviewcontroller.m or similar other.
Its better working than previous solution.