4
HEJ研究員,iPad上播放YouTube鏈接
我目前正試圖獲得一個YouTube的鏈接到我的iPad上的應用程序打內線,我把它工作正常在iPhone相同的代碼:
-(void)playString:(NSString*)string{
NSString *youTubeVideoHTML = @"<html><head>\
<body style=\"margin:0\">\
<embed id=\"yt\" src=\"%@\" type=\"application/x-shockwave-flash\" \
width=\"%0.0f\" height=\"%0.0f\"></embed>\
</body></html>";
// Populate HTML with the URL and requested frame size
NSString *html = [NSString stringWithFormat:youTubeVideoHTML, string, self.frame.size.width, self.frame.size.height];
// Load the html into the webview
[self loadHTMLString:html baseURL:nil];
}
我的看法層次結構看起來像如下:
UISplitViewControler
root
table
detail
UIViewController
mittels [self.view addSubview:sec.view] hinzugefügter "Popup"-Controller
UIWebView auf UIButton
交互式的YouTube識別禾但是當用戶點擊uiwebview中的插入按鈕(自動發生位置)時,視頻不會變爲全屏,而是以微縮略圖播放,而不是更多。當用戶手動點擊webview中的兩個「箭頭」時,它會。
有什麼想法?
對不起,沒有運氣... –