I am trying to play video in a UIWebView by loading the HTML file. The following is the source written in the HTML file. Whenever the HTML is loaded, the video starts playing automatically, but I do not want this.\[code\]<html> <head> <title>Sample video page</title> </head> <body> <p>This is a paragraph</p> <video> <source src="http://stackoverflow.com/questions/12775732/advertisementLocal" type='video/mp4'> </video> </body></html>\[/code\]I changed the \[code\]self.webView.mediaPlaybackRequiresUserAction = YES;\[/code\] but still the video plays automatically. I don't want it to be played automatically. Can anyone help me?