将youtube添加到CCScene?

时间:2012-05-24 08:31:06

标签: objective-c cocos2d-iphone

我知道如何将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];  
}  

任何帮助都会很棒。 感谢名单

1 个答案:

答案 0 :(得分:0)

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

如果您使用的是cocos2d 2.0,则openGLView属性名为view