我想要的是什么:
我所知道的:
我已阅读 Youtube REST服务的文档,我无法弄清楚如何执行此操作。
这甚至可能吗?如果是这样,我应该去哪个方向?
答案 0 :(得分:0)
您可以使用UIWebView
播放具有所需功能的YouTube视频。
这是示例
NSString *htmlString = [NSString stringWithFormat:@"%@%@%@%@%@%@%@%@%@",
@"<html><head><meta name = \"viewport\" content = \"initial-scale = 1.0, user-scalable = no, width = 212\"/></head><body style=\"background:#000;margin-top:0px;margin-left:0px\"><div><object width=\"212\" height=\"172\"><param name=\"movie\" value=\"",
youTubeUrl,
@"?f=gdata_videos&rel=0\"></param><param name=\"wmode\" value=\"transparent\"></param><embed src=\"",
youTubeUrl,
@"?f=gdata_videos&rel=0\"type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\" ",
width,
@"\"height=\" ",
height,
@"\"></embed></object></div></body></html>"];
[[NSURLCache sharedURLCache] removeAllCachedResponses];
[_youTubeWebView loadHTMLString:htmlString baseURL:[NSURL URLWithString:nill]];