GoogleInteractiveMediaAds Framework Reference
IMAContentPlayhead
@protocol IMAContentPlayhead
Defines an interface for a class that tracks video content progress and
exposes a key value observable property |currentTime|.
The SDK provides an implementation for tracking AVPlayer-based playback
in the IMAAVPlayerContentPlayhead.
Publishers can supply their own implementation by implementing this
interface and this way support any other video playback implementation
they might have.
-
Reflects the current playback time in seconds for the content.
The property is key value observable.
Declaration
Swift
var currentTime: TimeInterval { get }
Objective-C
@property (nonatomic, readonly) NSTimeInterval currentTime;
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2023-11-14 UTC.
[null,null,["Last updated 2023-11-14 UTC."],[[["The `IMAContentPlayhead` protocol defines an interface for tracking video content progress, primarily through the `currentTime` property."],["It provides a standardized way to monitor playback time, enabling developers to integrate with various video playback implementations."],["While the SDK offers an implementation for AVPlayer, publishers can create custom implementations to support other playback systems."],["The `currentTime` property, expressed in seconds, is key-value observable, allowing for dynamic updates and reactions to playback progress."]]],[]]