gpt4 book ai didi

iphone - 如何在 tableview 中获取 youtube 嵌入式视频并在处理 "Done"按钮时遇到问题

转载 作者:太空狗 更新时间:2023-10-30 03:45:57 25 4
gpt4 key购买 nike

如何在 UITableViewCell 中获取 YouTube 视频,以及如何处理播放 UIWebViewDone 按钮视频?

我已将视频嵌入到 View 中,但就像在图像上一样。我想要这张图片中的Done按钮:

Screenshot

我想在返回 View 时打开另一个屏幕,而不是之前的 View 。

-(void)viewDidLoad {
[super viewDidLoad];
videoURL = [[NSString alloc]init];
videoURL =@"http://www.youtube.com/watch?v=aE2b75FFZPI";
[self embedYouTube:videoURL frame:CGRectMake(10, 85, 300, 180)];
}


- (void)embedYouTube:(NSString*)url frame:(CGRect)frame {
NSString* embedHTML = @"\ <html><head>\ <style type=\"text/css\">\ body {\ background-color: transparent;\ color: red;\ }\ </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];
NSLog(@"html%@",html);
}

[videoView loadHTMLString:html baseURL:nil];
}

我需要一些帮助。我做了一个搜索,但我没有得到任何东西。

最佳答案

由于这个问题有一段时间没有得到答复,我想我可以提供一个建议。我相信最终结果与您正在寻找的结果相同,但实现目标的路径略有不同。

因此,根据我的理解,您需要一个 UITableView Controller 来显示一个 YouTube 视频列表,当您单击它们时会播放这些视频。以下是我在我的一个应用程序中处理这种情况的方法。

  1. 您需要获取列表中所需视频的 RSS 提要。这很简单...如果是针对用户,格式为 http://www.youtube.com/rss/user/{USERNAME}/videos.rss
  2. 因此,您需要从那里将 RSS 提要解析为包含标题、描述、缩略图和视频链接的对象列表。所有这些都在 RSS 中提供,我使用 NSXMLParser 来完成这项工作。
  3. 一旦你有了一个很好的值对象列表,你需要做的就是让表触发 MPMoviePlayerViewController 并将播放电影的 URL 传递给它。

didSelectRowAtIndexPath 实现

- (void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
/** self.items is just a mutable array of video objects that is the underlying
datasource for the table. The Video object is just a simple value object
I created myself */
Video *video = [self.items objectAtIndex:[indexPath row]];

MPMoviePlayerViewController *mp = [[MPMoviePlayerViewController alloc] initWithContentURL:[NSURL URLWithString:video.video]];

[self presentMoviePlayerViewControllerAnimated:mp];

[mp release];
}

这是我的视频类的界面

@interface Video : NSManagedObject {

@property (nonatomic, retain) NSString * title;
@property (nonatomic, retain) NSString * link;
@property (nonatomic, retain) NSString * comments;
@property (nonatomic, retain) NSString * thumbnail;
@property (nonatomic, retain) NSString * pubDate;
@property (nonatomic, retain) NSString * video;
@property (nonatomic, retain) NSString * guid;
@property (nonatomic, retain) NSString * desc;

@end

就是这样,这是一种在 UITableViewController 中显示 YouTube 视频的简单好方法。我不会深入探讨 XML 解析,关于如何进行解析的文档有很多。我只是快速谷歌了一下,这个博客实际上深入了解了我正在谈论的内容:

http://useyourloaf.com/blog/2010/10/16/parsing-an-rss-feed-using-nsxmlparser.html

希望这能让你继续前进。我知道这并不能解决将标记放在 WebView 中的问题,但我认为您会发现这种方式更直观一些,而且由于没有太多响应...希望它能让您启动并运行。

关于iphone - 如何在 tableview 中获取 youtube 嵌入式视频并在处理 "Done"按钮时遇到问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10531401/

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