如何将 youtube 集成到 ios 应用程序中?

How to integrate youtube in ios app?

我想将 youtube 集成到我的应用程序中。并在 table 视图中显示视频 任何人都可以帮助我。 请详细说明如何集成 youtube 并在 table 视图中显示视频列表,或者我可以在单击按钮时下载这些视频。

提前致谢。

http://developers.google.com/youtube/v3/guides/ios_youtube_helper

你可以通过cocoa集成它 pod.You可以在UITableView中显示它。

您不能直接从 youtube 下载 youtube 视频。

我强烈建议您使用 pod 将 youtube 集成到您的应用程序中。

pod 'youtube-ios-player-helper', :git =>'https://github.com/youtube/youtube-ios-player-helper', :commit=>'head'

它是在其中使用 youtube 的官方方式。试试吧,你不需要自己写html和css。

示例用法

1)在xib中添加UIView并将其class改为YTPlayerView

2) 为 YTPlayerView

创建 IBOutlet
@property(nonatomic, strong) IBOutlet YTPlayerView *playerView;

2) 在ViewController.m

NSDictionary *playerVars = @{
                                     @"playsinline"    : @1,
                                     @"showinfo"       : @0,
                                     @"rel"            : @0,
                                     @"controls"       : @1,
                                     @"origin"         : @"https://www.example.com", // this is critical
                                     @"modestbranding" : @1
                                     };

 [self.playerView loadWithVideoId:@"Youtube Video Id" playerVars:playerVars];

如需完整文档,请访问。
https://github.com/youtube/youtube-ios-player-helper

详细教程由Youtube提供 https://developers.google.com/youtube/v3/guides/ios_youtube_helper#installation