CSJInterstitialAdDelegate.h 614 B

123456789101112131415161718192021222324252627
  1. //
  2. // CSJFullScreenInterstitialAdDelegate.h
  3. // CSJAdSDK
  4. //
  5. // Created by bytedance on 2021/1/24.
  6. //
  7. #ifndef BUInterstitialAdDelegate_h
  8. #define BUInterstitialAdDelegate_h
  9. @protocol CSJInterstitialAdDelegate <NSObject>
  10. @optional
  11. /// 全屏广告即将关闭
  12. - (void)interstitialAdWillClose;
  13. /// 全屏广告已关闭
  14. - (void)interstitialAdDidClose;
  15. /// 全屏广告被点击(插屏,全屏图片)
  16. - (void)interstitialAdDidClick;
  17. /// 广告内关闭AppStore回调
  18. - (void)didCloseOtherControllerWithInteractionType:(BUInteractionType)interactionType;
  19. @end
  20. #endif /* BUFullScreenInterstitialAdDelegate_h */