
Hi,
How to call javascript function defined in the web page from UIWebview object?
Thanks

Hi,
You can use the stringByEvaluatingJavaScriptFromString function of UIWebview class to call JavaScript method.
Here is example:
[webView stringByEvaluatingJavaScriptFromString:@"myFunction()"];
Thanks