GoogleInteractiveMediaAds Framework Reference
Stay organized with collections
Save and categorize content based on your preferences.
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 2025-08-20 UTC.
[null,null,["Last updated 2025-08-20 UTC."],[[["\u003cp\u003eDefines an interface for tracking video content progress, primarily through the \u003ccode\u003ecurrentTime\u003c/code\u003e property.\u003c/p\u003e\n"],["\u003cp\u003eOffers a key-value observable property, \u003ccode\u003ecurrentTime\u003c/code\u003e, reflecting the current playback time in seconds.\u003c/p\u003e\n"],["\u003cp\u003eIncludes a default implementation for AVPlayer-based playback via \u003ccode\u003eIMAAVPlayerContentPlayhead\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eEnables publishers to create custom implementations for alternative video playback systems by adhering to this interface.\u003c/p\u003e\n"]]],["The `IMAContentPlayhead` protocol tracks video content progress, exposing the observable `currentTime` property, representing playback time in seconds. The SDK provides `IMAAVPlayerContentPlayhead` for `AVPlayer`, but publishers can implement `IMAContentPlayhead` to support other video players. This property's value is key-value observable and is read-only, providing the current playback time as a `TimeInterval` (Swift) or `NSTimeInterval` (Objective-C).\n"],null,["# GoogleInteractiveMediaAds Framework Reference\n\nIMAContentPlayhead\n==================\n\n @protocol IMAContentPlayhead\n\nDefines an interface for a class that tracks video content progress and\nexposes a key value observable property \\|currentTime\\|.\nThe SDK provides an implementation for tracking AVPlayer-based playback\nin the IMAAVPlayerContentPlayhead.\nPublishers can supply their own implementation by implementing this\ninterface and this way support any other video playback implementation\nthey might have.\n- `\n ``\n ``\n `\n\n ### [currentTime](#/c:objc(pl)IMAContentPlayhead(py)currentTime)\n\n `\n ` \n Reflects the current playback time in seconds for the content.\n The property is key value observable. \n\n #### Declaration\n\n Swift \n\n var currentTime: TimeInterval { get }\n\n Objective-C \n\n @property (nonatomic, readonly) NSTimeInterval currentTime;"]]