POBInterstitialEventDelegate Protocol Reference
Conforms to | NSObject |
---|---|
Declared in | POBInterstitialEvent.h |
Overview
The interstitial custom event delegate. It is used to inform ad server events back to the OpenWrap SDK
– openWrapPartnerDidWinForBid:
required method
Call this when the ad server SDK signals about partner bid win with bidId
- (void)openWrapPartnerDidWinForBid:(NSString *_Nullable)bidId
Parameters
bidId |
identifier of the winning bid to be rendered |
---|
Declared In
POBInterstitialEvent.h
– bidsProvider
required method
Returns bids provider
- (id<POBBidsProvider>)bidsProvider
Declared In
POBInterstitialEvent.h
– adServerDidWin
required method
Call this when the ad server SDK renders its own ad
- (void)adServerDidWin
Declared In
POBInterstitialEvent.h
– failedToLoadWithError:
required method
Call this when the ad server SDK fails to load the ad
- (void)failedToLoadWithError:(NSError *)error
Parameters
error |
detailed error object describing the cause of ad failure |
---|
Declared In
POBInterstitialEvent.h
– failedToShowWithError:
required method
Call this when the ad server SDK fails to show the ad
- (void)failedToShowWithError:(NSError *)error
Parameters
error |
detailed error object describing the cause of ad failure |
---|
Declared In
POBInterstitialEvent.h
– willPresentAd
required method
Call this when the ad server SDK is about to present a modal
- (void)willPresentAd
Declared In
POBInterstitialEvent.h
– didPresentAd
required method
Call this when the ad server SDK has presented a modal
- (void)didPresentAd
Declared In
POBInterstitialEvent.h
– didDismissAd
required method
Call this when the ad server SDK dissmisses a modal
- (void)didDismissAd
Declared In
POBInterstitialEvent.h
– willLeaveApp
required method
Call this when the ad server SDK informs about app leave event as a result of user interaction.
- (void)willLeaveApp
Declared In
POBInterstitialEvent.h
– didClickAd
required method
Call this when the ad server SDK informs about click event as a result of user interaction.
- (void)didClickAd
Declared In
POBInterstitialEvent.h
– adDidExpireAd
required method
Call this when the ad server SDK informs about ad expiration.
- (void)adDidExpireAd
Declared In
POBInterstitialEvent.h
– adServerAdDidRecordImpression
required method
Call this when the ad server SDK records the impression as applicable.
- (void)adServerAdDidRecordImpression
Declared In
POBInterstitialEvent.h