UIWebView & Video Control
Hi There,
I am very new to iOS development. I am developing app that uses UIWebView and shows whatever i pass as URL (word, excel, ppt, image, video (mp4/m4v) etc...)
Here's code i am using to show information in web view.
NSURLRequest *request = [NSURLRequest requestWithURL:targetURL];
[webView loadRequest:request];
its showing everything as expected. My problem is when i pass video (mp4/m4v) file as URL, its shows video but i am not able to find way to stop it from playing on certain action or even start playing on certain action.
Can you please guide me to correct direction?
Thanks in advance,
Tapan Desai
|