OOCuePointsView.h
1 
6 #import <UIKit/UIKit.h>
7 
12 
13 @property (nonatomic, readonly) double duration;
15 @end
16 
20 @interface OOCuePointsView : UIView
21 
22 @property (nonatomic) NSSet *cuePointsAtSeconds;
27 - (instancetype)initWithFrame:(CGRect)frame __attribute__((unavailable));
28 
37 - (instancetype)initWithFrame:(CGRect)frame
38  padding:(CGFloat)padding
39  durationDataSource:(id <OOCuePointViewDurationDataSource>)durationDataSource
40  diameter:(CGFloat)diameter;
41 @end
An interface that gives OOCuePointsView the duration to use when rendering its cuepoints.
Definition: OOCuePointsView.h:11
A view that renders the cue points of advertisements within a certain frame.
Definition: OOCuePointsView.h:20
double duration
The duration of a video.
Definition: OOCuePointsView.h:13
NSSet * cuePointsAtSeconds
The set of NSNumber cuepoints to render, in seconds.
Definition: OOCuePointsView.h:22