【Swift】YouTube動画検索&動画再生のサンプルコード(youtube-ios-player-helper)
2494 ワード
概要
YouTubeの動画検索と動画再生のサンプルコードです。
動画の検索はYouTube Data API (v3) のSearch:listを利用しています。
動画の再生はYouTube Helper Library (youtube-ios-player-helper)
を利用しています。(非常に簡単です!)
PureLayoutを利用し、今回もStoryboardは未使用です。
github
https://github.com/menomoto/Sample_Apps/tree/master/youtubeSearch
* 利用する場合はAPIキーを作成してapiKeyを変更してください。
動画再生のコード
// import YouTube Helper Library
import YouTubeiOSPlayerHelper
// view Element
let playerView: YTPlayerView
// initialize
self.playerView = YTPlayerView.newAutoLayoutView()
// addsubview
view.addSubview(playerView)
// Video load
playerView.delegate = self
playerView.loadWithVideoId(video.videoId, playerVars: ["playsinline":1])
// Auto Layout
playerView.autoPinEdgeToSuperviewEdge(.Top)
playerView.autoPinEdgeToSuperviewEdge(.Left)
playerView.autoPinEdgeToSuperviewEdge(.Right)
playerView.autoSetDimension(.Height, toSize: 380)
結果
// import YouTube Helper Library
import YouTubeiOSPlayerHelper
// view Element
let playerView: YTPlayerView
// initialize
self.playerView = YTPlayerView.newAutoLayoutView()
// addsubview
view.addSubview(playerView)
// Video load
playerView.delegate = self
playerView.loadWithVideoId(video.videoId, playerVars: ["playsinline":1])
// Auto Layout
playerView.autoPinEdgeToSuperviewEdge(.Top)
playerView.autoPinEdgeToSuperviewEdge(.Left)
playerView.autoPinEdgeToSuperviewEdge(.Right)
playerView.autoSetDimension(.Height, toSize: 380)
Author And Source
この問題について(【Swift】YouTube動画検索&動画再生のサンプルコード(youtube-ios-player-helper)), 我々は、より多くの情報をここで見つけました https://qiita.com/menomoto/items/a43f9f672278795a371b著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .