OOOoyalaTVBottomBars.h
1 //
2 // OOOoyalaBottomTVBars.h
3 // OoyalaTVSkinSDK
4 //
5 // Copyright © 2016 ooyala. All rights reserved.
6 //
7 
8 #import <UIKit/UIKit.h>
9 
10 @interface OOOoyalaTVBottomBars : UIView
11 
12 - (instancetype)initWithBackground:(UIView *)background
13  withTintColor:(UIColor *)tintColor;
14 
15 - (void)updateBarBuffer:(CGFloat)bufferTime
16  playhead:(CGFloat)playheadTime
17  duration:(CGFloat)duration
18  totalLength:(CGFloat)length;
19 
20 - (void)updateProgressBarTime:(CGFloat)time
21  duration:(CGFloat)duration
22  totalLength:(CGFloat)length;
23 
24 @end
Definition: OOOoyalaTVBottomBars.h:10