当我意识到我正在播放的 youtube 视频是在 iPhone 上播放的,而不是在 iPad 上播放时,我正准备提交一个应用程序。这是我正在使用的代码:
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, [videoItem objectForKey:@"URL"], thumb.frame.size.width, thumb.frame.size.height];
UIWebView *videoView = [[UIWebView alloc] initWithFrame:thumb.frame];
[videoView loadHTMLString:html baseURL:nil];
[videoContainer addSubview:videoView];
有什么理由可以在 iPhone 而不是 iPad 上运行吗?我正在第一代 iPad 上进行测试。这些视频可以在我测试过的两种 iPhone 机型(3GS 和 4S)上播放。
当我点击 iPad 上的 webviews 时,什么都没有发生。