Skip to content

iOS Rewarded Video Advanced Usage

Mert Celik edited this page Sep 24, 2018 · 1 revision

If you are looking for a usage that gives you more control about the performance optimization, you can use methods below:

N.B: If you want to use advanced usage, do NOT enable auto-loading for that format.

1. Load the rewarded video

Load the rewarded video by calling:

[AMRewarded loadAd];

2. Check if rewarded video is loaded

You can check the rewarded video availability by calling:

if ([AMRewarded isReady]) {
    // rewarded video is ready
} else {
    // rewarded video is NOT ready
}

3. Display the rewarded video

You can display the rewarded video by calling:

[AMRewarded presentFromViewController:YOUR_VIEW_CONTROLLER];
Clone this wiki locally