AI-generated Key Takeaways
-
IMACuepoint
is a data object representing a cuepoint for a single ad break. -
It includes properties for
startTime
,endTime
, andplayed
status, all expressed in seconds or as a boolean value. -
These properties provide information about the temporal location and playback status of the ad break cuepoint.
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 (nonatomic, readonly) NSTimeInterval startTime;
-
The end time of the cuepoint in seconds.
Declaration
Swift
var endTime: TimeInterval { get }
Objective-C
@property (nonatomic, readonly) NSTimeInterval endTime;
-
Specifies whether this cuepoint has been played.
Declaration
Swift
var isPlayed: Bool { get }
Objective-C
@property (nonatomic, readonly, getter=isPlayed) BOOL played;