iphone:youtube视频无法使用uiwebview播放

时间:2012-09-22 10:59:19

标签: iphone objective-c video

我想使用uiwebview播放管视频,我使用以下代码播放视频

[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);
}

但我无法在模拟器中观看视频。

任何人都可以说我犯了错误吗? 提前谢谢...

1 个答案:

答案 0 :(得分:0)

您的代码在真实设备上运行良好。我在iPhone 4 iOS 5.0上测试过它。我认为问题出在模拟器上,而不是你的代码。