如何为ipad嵌入视频网址

时间:2011-10-05 11:50:20

标签: iphone ipad

- (void)embedYouTube:(NSString*)url frame:(CGRect)frame {   

    NSString *htmlString = [NSString stringWithFormat:<html><head>\
    <meta name = \"viewport\" content = \"initial-scale = 1.0, user-scalable = no, width = 212\"/></head>\
    <body style=\"background:#F00;margin-top:0px;margin-left:0px\">\
    <div><object width=\"100\" height=\"100\">\
    <param name=\"movie\" value=\"%@\"></param>\
    <param name=\"wmode\" value=\"transparent\"></param>\
    <embed src=\"%@\"\
    type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"100\" height=\"100\"></embed>\
    </object></div></body></html>",url,url];

    webView = [[UIWebView alloc] initWithFrame:frame];
    webView.delegate = self;
    [webView setScalesPageToFit:TRUE];
    [webView setContentMode:UIViewContentModeTop];
    [self.view addSubview:webView];
    [webView loadHTMLString:htmlString baseURL:nil];

}

我已经实现了上面的代码。它在iPhone上工作正常,但在iPad上我只听到音频,视频没有显示。

如何在两种类型的设备上实现此功能?

2 个答案:

答案 0 :(得分:1)

我工作了两天以后得到了解决方案...... 解决方案是我需要在视图中添加与iphone不同的控制器。 但请记住,只有在解除视图的同时写下这两行。

[webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"about:blank"]]];

答案 1 :(得分:0)

这样就可以了。尝试以下代码:

(请注意,它只适用于设备,而不适用于模拟器)

  NSURL *videoURL = [NSURL URLWithString: @"http://www.youtube.com/embed/iyKsSPHM0wE"];



    NSURLCache *sharedCache = [[NSURLCache alloc] initWithMemoryCapacity:0 diskCapacity:0 diskPath:nil]; 
    [NSURLCache setSharedURLCache:sharedCache]; [sharedCache release];
    //

    NSURLRequest *request = [[NSURLRequest alloc] initWithURL: videoURL cachePolicy: NSURLRequestReloadIgnoringLocalCacheData timeoutInterval: 30.0];  
    [webView loadRequest: request];  
    [request release];