AdstirInterstitialDelegate Protocol Reference - united-adstir/AdStir-Integration-Guide-iOS GitHub Wiki
全画面インタースティシャル広告のデリゲートです。
Instance Methods
- -adstirInterstitialDidLoad:
- -adstirInterstitial:didFailToLoadWithError:
- -adstirInterstitialDidShow:
- -adstirInterstitial:didFailToShowWithError:
- -adstirInterstitialDidClose:
-adstirInterstitialDidLoad:
インタースティシャル広告の準備が完了した際に呼び出されます。
- (void)adstirInterstitialDidLoad:(AdstirInterstitial *)interstitial;
Parameters
- interstitial
- インタースティシャル広告の準備が完了したインスタンス
-adstirInterstitial:didFailToLoadWithError:
インタースティシャル広告の準備に失敗した際に呼び出されます。
エラーコードについてはこちらをご覧ください。
- (void)adstirInterstitial:(AdstirInterstitial *)interstitial didFailToLoadWithError:(NSError *)error;
Parameters
- interstitial
- インタースティシャル広告の準備に失敗したインスタンス
- error
- エラーメッセージ
-adstirInterstitialDidShow:
インタースティシャル広告が表示された際に呼び出されます。
- (void)adstirInterstitialDidShow:(AdstirInterstitial *)interstitial;
Parameters
- Interstitial
- インタースティシャル広告を表示したインスタンス
-adstirInterstitial:didFailToShowWithError:
インタースティシャル広告の表示に失敗した際に呼び出されます。
エラーコードについてはこちらをご覧ください。
- (void)adstirInterstitial:(AdstirInterstitial *)interstitial didFailToShowWithError:(NSError *)error;
Parameters
-
interstitial
- インタースティシャル広告の表示に失敗したインスタンス
-
error
- エラーメッセージ
-adstirInterstitialDidClose:
インタースティシャル広告が閉じられたときに呼び出されます。
- (void)adstirInterstitialDidClose:(AdstirInterstitial *)interstitial;
Parameters
- interstitial
- インタースティシャル広告が閉じられたインスタンス
Error code
AdstirInterstitialError
エラーコード | 定義 | 説明 |
---|---|---|
15000 | AdstirInterstitialErrorUnknown | Unknownエラー |
15001 | AdstirInterstitialErrorInternal | Internalエラー(アプリ側へは通知されません) |
15002 | AdstirInterstitialErrorNoFill | 案件切れによる読み込みエラー |
15003 | AdstirInterstitialErrorFailedToShow | 広告再生失敗エラー |
15004 | AdstirInterstitialErrorInvalidSpot | 存在しない広告枠への読み込みエラー |
15005 | AdstirInterstitialErrorDidNotInitialize | 初期化未完了時の読み込みエラー |
15006 | AdstirInterstitialErrorMediationAdapterNotFound | メディエーションアダプタの呼び出しエラー(アプリ側へは通知されません) |