-
Notifications
You must be signed in to change notification settings - Fork 1
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.
Load the rewarded video by calling:
[AMRewarded loadAd];
You can check the rewarded video availability by calling:
if ([AMRewarded isReady]) {
// rewarded video is ready
} else {
// rewarded video is NOT ready
}
You can display the rewarded video by calling:
[AMRewarded presentFromViewController:YOUR_VIEW_CONTROLLER];