gpt4 book ai didi

objective-c - 点击 UITableViewCell 时如何在 iPhone 应用程序上播放 YouTube 电影?

转载 作者:太空狗 更新时间:2023-10-30 03:53:50 24 4
gpt4 key购买 nike

我是 iPhone 开发的新手,刚开始开发一个包含 UITableView 的应用程序,其中每个单元格都由 web View 形式的 youtube 视频缩略图组成。为了在 iPhone 上嵌入 YouTube 播放器,我使用了以下代码。

- (void)embedYouTube:(NSString*)url frame:(CGRect)frame {  
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, url, frame.size.width, frame.size.height];
if(videoView == nil) {
videoView = [[UIWebView alloc] initWithFrame:frame];
[self.view addSubview:videoView];
}
[videoView loadHTMLString:html baseURL:nil];

}

现在我可以在 tableviewcell 上看到缩略图,点击缩略图后,YouTube 播放器会打开并播放电影。

我的缩略图只占单元格的一小部分,单元格的其余区域包含一些文本描述。我的问题是我必须准确点击缩略图才能播放电影。如果我点击单元格上的其他地方,它就不会播放,因为我的缩略图没有延伸到整个单元格。

没有办法让电影在 didSelectRowAtIndexPath 中播放吗?我看到一些人建议使用 Javascript,但似乎没有人知道如何正确使用它来解决这个问题。

如果有人能提供帮助,将不胜感激。

最佳答案

我建议你看看YouTube APIs并尝试弄清楚你真正的问题是什么。但另一个好的链接是 How To Play YouTube Videos Within an Application .希望我能帮到你。

关于objective-c - 点击 UITableViewCell 时如何在 iPhone 应用程序上播放 YouTube 电影?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1617723/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com