YouTube-Player-iOS-Helper
概览
要运行示例项目;克隆仓库,然后从项目目录首先运行 pod install
。有关简单教程,请参阅这篇 Google 开发者文章 - 使用 YouTube Helper 库在您的 iOS 应用程序中嵌入 YouTube 视频。
安装
CocoaPods
YouTube-Player-iOS-Helper 可通过 CocoaPods 获取。要安装库,请将以下行添加到 Podfile 中,并用最新版本号替换 "x.y.z"。
pod "youtube-ios-player-helper", "~> x.y.z"
Swift 包管理器
请将以下行添加到您的 Package.swift
中的依赖项:
.package("https://github.com/youtube/youtube-ios-player-helper.git", from: "x.y.z")
将 YouTubeiOSPlayerHelper
添加到您的目标的依赖项中。
.target(name: "TargetName",
dependencies: [
"YouTubeiOSPlayerHelper"
]
)
使用方法
在项目中安装后,要使用该库
- 将所需大小的 UIView 拖动到您的 Storyboard 中。
- 在 Identity Inspector 标签页中将 UIView 的类更改为 YTPlayerView
- 在 ViewController 中导入 "YTPlayerView.h"。
- 将以下属性添加到 ViewController 的头文件
@property(nonatomic, strong) IBOutlet YTPlayerView *playerView;
- 使用以下代码在您的控制器代码中将视频加载到播放器中
[self.playerView loadWithVideoId:@"M7lc1UVf-VE"];
- 运行您的代码!
查看示例项目了解更多高级用法,包括传递额外的播放器参数和支持 YTPlayerViewDelegate 途径的回调。
原始作者
- Ikai Lan
- Ibrahim Ulukaya
- Yoshifumi Yamaguchi
许可证
YouTube-Player-iOS-Helper 可在 Apache 2.0 许可证下使用。有关更多信息,请参阅 LICENSE 文件。