Created
July 4, 2019 04:16
-
-
Save bartjacobs/c8145327ef5d22ef1637c038aa01ab0d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Fetch Video | |
playbackService.findVideo(withVideoID: id, parameters: nil, completion: { [weak self] (video, _, error) in | |
if let error = error { | |
// Handle Error | |
} else if let video = video { | |
// Use Video | |
} | |
}) | |
// The `playbackService` object is an instance of the `BCOVPlaybackService` class. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment