RewardedAdLoaderDelegate
@objc(YMARewardedAdLoaderDelegate)
public protocol RewardedAdLoaderDelegate : NSObjectProtocol
Undocumented
-
Notifies that the ad loaded successfully.
Declaration
Swift
func rewardedAdLoader(_ adLoader: RewardedAdLoader, didLoad rewardedAd: RewardedAd)Parameters
adLoaderA reference to an object of the
RewardedAdLoaderclass that invoked the method.rewardedAdA reference to an object of the
RewardedAdclass that invoked the method. -
Notifies that the ad failed to load.
Declaration
Swift
func rewardedAdLoader(_ adLoader: RewardedAdLoader, didFailToLoadWithError error: AdRequestError)Parameters
adLoaderA reference to an object of the
RewardedAdLoaderclass that invoked the method.errorInformation about the error (for details, see
AdErrorCode).