0

我知道如何将 youtube 添加到视图中。但我们使用的是 CCScene(cocos2d),我需要从一个场景中打开一个 youtube 并播放它。

我该怎么做?

我知道如何通过添加子视图来做到这一点:

- (void)embedYouTube:(NSString*)url 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, url, frame.size.width, frame.size.height];  

    if(videoView == nil) {  
        videoView = [[UIWebView alloc] initWithFrame:frame];  
        [self.view addSubview:videoView];  
    }  
    [videoView loadHTMLString:html baseURL:nil];  
}  

任何帮助都会很棒。谢谢

4

1 回答 1

0
[[CCDirector sharedDirector].openGLView addSubview:videoView];

如果您使用的是 cocos2d 2.0,则该openGLView属性仅称为view.

于 2012-05-24T09:33:56.093 回答