2011-08-22 301 views
1

在我的應用我想用下面的code.It簡單地告訴我一個白色的屏幕播放YouTube視頻,iPad的

YouTube網址播放YouTube網址(新iPad).I'm爲:http:// WWW ?.youtube.com /手錶v = x61GMbKwMkE

這是我的代碼:

NSString *embed = @"\ 
<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=320 height=460></embed>\ 
</body></html>"; 
NSString *embedURL=[NSString stringWithFormat:embed,appDelegate.videoURL]; 
NSLog(@"\n\n\n\n Myurl==%@ %@\n\n\n",embedURL,appDelegate.videoURL); 
[[WebView.subviews objectAtIndex:0] setScrollEnabled:NO]; 
[WebView loadHTMLString:embedURL baseURL:nil]; 

我創建和XIB連接UIWebView的。

任何人引導我做這件事

感謝您的參與和努力的iOS不支持

+0

檢查此鏈接這可能會幫助你。 http://stackoverflow.com/questions/7585643/youtube-videos-on-iphone-phonegap-app/10590537#10590537 –

回答