1

i want ask how i can display a youtube video like the way i do in ios 5 in a embed uiwebview, in ios 5 i do this:

[self.myWebView loadHTMLString:[NSString stringWithFormat:@"<embed id=\"yt\" src=\"%@\" type=\"application/x-shockwave-flash\" width=\"260\" height=\"136\"></embed>", newUrlFormat] baseURL:nil];

and the video start direct in landscape mode, but now in ios 6 this don't work, so how i can do to display a video direct in landscape?

i want also ask if this project is legal under youtube API and if i can use in a ios app:

https://github.com/hellozimi/HCYoutubeParser

4

1 回答 1

0

YouTube API 服务条款解释了使用 YouTube API 时不允许的内容:https ://developers.google.com/youtube/terms

您需要自己阅读该文件的解释,或者如果您觉得没有资格这样做,请保留您自己的律师的服务。互联网上的问答网站中没有人可以为您解答法律问题。

在 iOS 6 中,Apple 改变了 YouTube 视频标签在移动 WebKit 中的解释方式。以前,它会自动翻译成一个可点击的链接,该链接会在内置(旧版)YouTube 应用程序中启动播放,但在 iOS 6 中,我相信他们会自动重写标签以使其成为等效的嵌入标签。这可以解释您报告的行为变化。

于 2012-09-26T15:32:16.823 回答