Stay organized with collections
Save and categorize content based on your preferences.
This guide explains how to take action based on ad buffering state.
Using buffer events in your app
You can use the following delegate methods on IMAAdsManagerDelegate to add an
activity indicator to your app when ads pause to buffer:
- (void)adsManagerAdDidStartBuffering(IMAAdsManager *)adsManager: Called
when an ad that already started playing has stopped to buffer.
- (void)adsManager:(IMAAdsManager *)adsManager adDidBufferToMediaTime:(NSTimeInterval)mediaTime:
Called as an ad buffers. This method is called repeatedly as long as an ad is
buffering.
- (void)adsManagerAdPlaybackReady:(IMAAdsManager *)adsManager: Called when
the current ad is sufficiently buffered such that ad playback is not likely to
outrun the buffer.
@interfaceVideoViewController()<IMAAdsManagerDelegate,...>...@end@implementationVideoViewController...-(void)adsManagerAdDidStartBuffering:(IMAAdsManager*)adsManager{// Show your activity indicator above the video player - ad playback has// stopped to buffer.}-(void)adsManagerAdPlaybackReady:(IMAAdsManager*)adsManager{// Hide your activity indicator - as playback resumes.}
FAQ
Can I show an activity indicator before my ad starts playing?
Yes, but we recommend relying on different delegate methods for that
use case. You can show the activity indicator when you call [adsManager start],
and hide the activity indicator when you catch kIMAAdEvent_STARTED in
- (void)adsManager:(IMAAdsManager *)adsManager didReceiveAdEvent:(IMAAdEvent *)event.
[[["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 2025-01-21 UTC."],[[["This guide explains how to utilize ad buffer events to implement an activity indicator in your app, enhancing user experience during ad playback."],["Developers can use the `IMAAdsManagerDelegate` methods to trigger actions like showing and hiding an activity indicator based on the ad's buffering state."],["The `adsManagerAdDidStartBuffering`, `adsManagerAdPlaybackReady`, and `adsManager:(IMAAdsManager *)adsManager adDidBufferToMediaTime:(NSTimeInterval)mediaTime` methods provide signals for managing the activity indicator during buffering."],["While you can show an activity indicator before ad playback, using delegate methods specific to ad start events is recommended for that scenario."]]],[]]