I'm developing an app that saves html files locally on iPhone file system, then load them in UIWebView. I want to be able to zoom or double tap programmatically on the UIWebView, I tried searching for javascript code, but I could only scroll.
I also tried the webview transform, but didn't work out for me. I found this method
sendAction:to:from:forEvent:
in the UIApplication class, that can send actions to controls.
Does anybody know how to send the double tap action programmatically to a UIWebView on a certain x,y?
See Question&Answers more detail:os