This is my source code... Shows the video ok, but when I tap the screen, th emovie controls don't appear
Code:
// Create the video preview frame inside the alertView
UIWebView *videoView;
CGRect videoFrame = CGRectMake(70, 120, 142, 129);
videoView = [[UIWebView alloc] initWithFrame:videoFrame];
[alertView addSubview:videoView];
// Create the html to embed in the alertView
NSString *embedHTML = @"\
<html><head>\
<style type=\"text/css\">\
body {\
background-color: transparent;\
color: white;\
}\
</style>\
</head><body style=\"margin:0\">\
<embed id=\"youtubeVideo\" src=\"%@\" type=\"application/x-shockwave-flash\" \
width=\"%0.0f\" height=\"%0.0f\"></embed>\
</body></html>";
NSString *html = [NSString stringWithFormat:embedHTML, @"http://www.youtube.com/watch?v=M9wSPssze5g", 142.0, 129.5];
[videoView loadHTMLString:html baseURL:nil];
[alertView show];
[alertView release];