2012-05-24 83 views
0

我知道如何將YouTube添加到視圖中。 但我們正在使用CCScene(cocos2d),我需要打開一個YouTube並從場景中播放它。將youtube添加到CCScene中?

我該怎麼做?

我知道如何與添加子視圖做到這一點:

- (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]; 
} 

任何幫助將是巨大的。 感謝名單

回答

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

如果您使用了cocos2d 2.0 openGLView屬性就被稱爲view

相關問題