我想探索我還能在iOS應用開發中做些什麼,以及現在我試圖在我的應用中包含視頻。Objective-C:在應用上播放Youtube視頻
我有下面的代碼,旨在播放視圖加載時的YouTube視頻,但我得到的只是一個黑色的webView。
NSString *videoURL = @"http://youtu.be/Wq_CtkKrt1o";
videoView = [[UIWebView alloc] initWithFrame:CGRectMake(0, 0, 768, 1024)];
videoView.backgroundColor = [UIColor clearColor];
videoView.opaque = NO;
videoView.delegate = self;
[self.view addSubview:videoView];
NSString *videoHTML = [NSString stringWithFormat:@"\
<html>\
<head>\
<style type=\"text/css\">\
iframe {position:absolute; top:50%%; margin-top:-130px;}\
body {background-color:#000; margin:0;}\
</style>\
</head>\
<body>\
<iframe width=\"100%%\" height=\"240px\" src=\"%@\" frameborder=\"0\" allowfullscreen></iframe>\
</body>\
</html>", videoURL];
[videoView loadHTMLString:videoHTML baseURL:nil];
你在模擬器或設備上試試這個嗎? – 2013-03-19 03:31:31
@MikeD我正在設備上測試它。 – 2013-03-19 03:33:40