Reproduza vídeos do YouTube no aplicativo para iPhone sem usar o UIWebView?

Eu quero reproduzir vídeos do YouTube no meu aplicativo para iPhone. Eu tentei reproduzir vídeos do YouTube no meu aplicativo para iPhone com os seguintes códigos,

[self playVideo:@"http://www.youtube.com/watch?v=WL2l_Q1AR_Q" frame:CGRectMake(20, 70, 280, 250)];

- (void)playVideo:(NSString *)urlString frame:(CGRect)frame
{
    NSString *embedHTML = @"\
    <html><head>\
    <style type=\"text/css\">\
    body {\
    background-color: transparent;\
    color: white;\
    }\
    </style>\
    </head><body style=\"margin:0\">\
    <embed id=\"yt\" src=\"%@\" type=\"application/x-shockwave-flash\" \
    width=\"%0.0f\" height=\"%0.0f\"></embed>\
    </body></html>";
    NSString *html = [NSString stringWithFormat:embedHTML, urlString, frame.size.width, frame.size.height];
    UIWebView *videoView = [[UIWebView alloc] initWithFrame:frame];
    [videoView loadHTMLString:html baseURL:nil];
    [self.view addSubview:videoView];
    [videoView release];
    NSLog(@"%@",html);
}

Mas, este código não está funcionando para mim. E também eu tentei comMPMoviePlayerController o código é

NSURL *fileURL = [NSURL URLWithString:@"http://www.youtube.com/watch?v=WL2l_Q1AR_Q"];
MPMoviePlayerController *moviePlayerController = [[MPMoviePlayerController alloc] initWithContentURL:fileURL]; 
[moviePlayerController.view setFrame:CGRectMake(0, 70, 320, 270)]; 
[self.view addSubview:moviePlayerController.view];  
moviePlayerController.fullscreen = YES;  
[moviePlayerController play];

Isso também não está funcionando para mim. Alguém pode me dizer onde eu errei e me sugerir alguma idéia? Quero reproduzir os vídeos do YouTube emMPMoviewPlayerController em vez de usarUIWebView. Desde já, obrigado

questionAnswers(10)

yourAnswerToTheQuestion