首先抱歉,如果有人发现这个问题是重复的(我自己没有找到)。
我正在为 iPad 应用程序开发并尝试使用以下代码播放 youtube 视频:
NSString *embedHTML = @"\
<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=\"%0.0f\" height=\"%0.0f\"></embed>\
</body></html>";
NSString *html = [NSString stringWithFormat:embedHTML, youTubeUrl, 142.0, 129.5];
[wbView loadHTMLString:html baseURL:nil];
该代码在 iphone 应用程序中使用时工作正常(即您触摸 web 视图,它开始全屏播放 youtube 视频。)但是在 iPad 中使用时,单击 web 视图时它开始在 web 视图本身中播放视频并显示进入全屏的选项,而我想从头开始全屏播放,就像在 iPhone 中一样。
任何有想法的人或以前做过的人请帮忙。
谢谢,
马杜普