An implementation of IMAContentPlayhead for AVPlayer. Use this class to
provide content tracking if your content player of choice is an AVPlayer
or its subclass.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-08-21 UTC."],[[["\u003cp\u003eIMAAVPlayerContentPlayhead is designed for content tracking within AVPlayer or its subclasses.\u003c/p\u003e\n"],["\u003cp\u003eIt simplifies tracking by attaching a periodic time observer to the provided AVPlayer instance.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eplayer\u003c/code\u003e property allows read-only access to the underlying AVPlayer being tracked.\u003c/p\u003e\n"],["\u003cp\u003eInitialization involves passing the target AVPlayer, establishing the tracking relationship.\u003c/p\u003e\n"]]],[],null,["# GoogleInteractiveMediaAds Framework Reference\n\nIMAAVPlayerContentPlayhead\n==========================\n\n @interface IMAAVPlayerContentPlayhead : NSObject \u003c../Protocols/IMAContentPlayhead.html\u003e\n\nAn implementation of IMAContentPlayhead for AVPlayer. Use this class to\nprovide content tracking if your content player of choice is an AVPlayer\nor its subclass.\n- `\n ``\n ``\n `\n\n ### [player](#/c:objc(cs)IMAAVPlayerContentPlayhead(py)player)\n\n `\n ` \n The player to track. \n\n #### Declaration\n\n Swift \n\n var player: AVPlayer { get }\n\n Objective-C \n\n @property (nonatomic, readonly) AVPlayer *_Nonnull player;\n\n- `\n ``\n ``\n `\n\n ### [-initWithAVPlayer:](#/c:objc(cs)IMAAVPlayerContentPlayhead(im)initWithAVPlayer:)\n\n `\n ` \n Initializes a IMAAVPlayerContentPlayhead that tracks a player. It will attach a periodic time\n observer to the player immediately. \n\n #### Declaration\n\n Swift \n\n init(avPlayer player: AVPlayer)\n\n Objective-C \n\n - (nonnull instancetype)initWithAVPlayer:(nonnull AVPlayer *)player;\n\n #### Parameters\n\n |----------------|------------------------|\n | ` `*player*` ` | the AVPlayer to track. |\n\n #### Return Value\n\n the IMAAVPlayerContentPlayhead instance"]]