OOOoyalaTVPlayerViewController.h
1 #import <UIKit/UIKit.h>
2 
3 @class OOOoyalaPlayer;
4 
5 @interface OOOoyalaTVPlayerViewController : UIViewController
9 @property (nonatomic) OOOoyalaPlayer *player;
15 @property (nonatomic) BOOL playbackControlsEnabled;
20 @property (nonatomic) UIColor *progressTintColor;
21 
22 - (instancetype)initWithPlayer:(OOOoyalaPlayer *)player;
23 
27 - (void)showProgressBar;
28 
32 - (void)hideProgressBar;
33 
34 - (NSArray *)availableOptions;
35 
37 
39 
40 - (void)addClosedCaptionsView;
41 
43 
44 - (void)updatePlayheadWithSeekTime:(double)seekTime;
45 
46 @end
Definition: OOOoyalaTVPlayerViewController.h:5
void removeClosedCaptionsMenu()
Definition: OOOoyalaTVPlayerViewController.m:500
NSArray * availableOptions()
Definition: OOOoyalaTVPlayerViewController.m:571
OOOoyalaPlayer * player
The player that will playback the video supplied through this controller.
Definition: OOOoyalaTVPlayerViewController.h:9
UIColor * progressTintColor
The color that will be used to tint the player&#39;s progress bar.
Definition: OOOoyalaTVPlayerViewController.h:20
The OoyalaPlayer is the heart of the playback system.
Definition: OOOoyalaPlayerFacade.h:58
void hideProgressBar()
Hide progress bar;.
Definition: OOOoyalaTVPlayerViewController.m:341
void addClosedCaptionsView()
Definition: OOOoyalaTVPlayerViewController.m:551
void setupClosedCaptionsMenu()
Definition: OOOoyalaTVPlayerViewController.m:488
void showProgressBar()
Show progress bar;.
Definition: OOOoyalaTVPlayerViewController.m:324
BOOL playbackControlsEnabled
Definition: OOOoyalaTVPlayerViewController.h:15
BOOL closedCaptionMenuDisplayed()
Definition: OOOoyalaTVPlayerViewController.m:535