IMACuepoint
@interface IMACuepoint : NSObject
Data object representation of a cuepoint for a single ad break.
-
The start time of the cuepoint in seconds.
Declaration
Swift
var startTime: TimeInterval { get }
Objective-C
@property (readonly, nonatomic) NSTimeInterval startTime;
-
The end time of the cuepoint in seconds.
Declaration
Swift
var endTime: TimeInterval { get }
Objective-C
@property (readonly, nonatomic) NSTimeInterval endTime;
-
Specifies whether this cuepoint has been played.
Declaration
Swift
var isPlayed: Bool { get }
Objective-C
@property (readonly, getter=isPlayed, nonatomic) BOOL played;