CSJNativeExpressSplashVideoAdView.h 856 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // CSJNativeExpressSplashVideoAdView.h
  3. // CSJAdSDK
  4. //
  5. // Created by cuiyanan on 2019/10/20.
  6. // Copyright © 2019 bytedance. All rights reserved.
  7. //
  8. #import "CSJNativeExpressAdView.h"
  9. @class CSJNativeExpressSplashVideoAdView;
  10. NS_ASSUME_NONNULL_BEGIN
  11. @protocol CSJNativeExpressSplashVideoAdViewDelegate <NSObject>
  12. - (void)nativeExpressSplashVideoAdViewReadyToPlay:(CSJNativeExpressSplashVideoAdView *)splashView;
  13. - (void)nativeExpressSplashVideoAdViewFinishPlayDidPlayFinish:(CSJNativeExpressSplashVideoAdView *)splashView didFailWithError:(NSError *)error;
  14. - (void)nativeExpressSplashVideoAdViewForceQuit:(CSJNativeExpressSplashVideoAdView *)splashView;
  15. @end
  16. @interface CSJNativeExpressSplashVideoAdView : CSJNativeExpressAdView
  17. @property (nonatomic, weak) id<CSJNativeExpressSplashVideoAdViewDelegate> delegate;
  18. @end
  19. NS_ASSUME_NONNULL_END