Embed video in html file loaded in UIWebView from Documents folder of application
问题 I have an html file named videoplay.html with following content <!DOCTYPE html> <html> <head> <title>Title</title> </head> <body> <p> This is demo html file for playing movie file embedded. </p> <p> <video controls> <source src="myvideoname.mov"> </video> </p> </body> </html> while Using following code (Loading from application bundle) It loads html content and shows movie and able to play movie file. NSURL *baseURL = [NSURL fileURLWithPath:[[NSBundle mainBundle] bundlePath]]; NSString *path