Reproduzir vídeo incorporado no UIWebView com HTML5

Na verdade, estou tentando reproduzir um vídeo local em um UIWebView, com o HTLM5.

O que eu faço é isso:

NSString *embedHTML = [NSString stringWithFormat:@"\
<html><head>\
<style type=\"text/css\">\
body {\
background-color: transparent;\
color: white;\
}\
</style>\
</head><body style=\"margin:0\">\
< src=\"%@\"  \
</embed>\
</body></html>", [[NSBundle mainBundle] pathForResource:@"ash(1).mov" ofType:nil]];



[webView setOpaque:NO];
NSString *html = [NSString stringWithFormat:embedHTML, webView.frame.size.width, webView.frame.size.height];
[webView loadHTMLString:html baseURL:nil];

Eu tenho no meu storyboard um UIWebView denominado webView com propriedade fraca / não atômica

@property (weak, nonatomic) IBOutlet UIWebView *webView;

Quando eu lanço o aplicativo, nada acontece: a tela ainda está branca e nenhum vídeo está sendo reproduzido.

questionAnswers(2)

yourAnswerToTheQuestion