FqAdsplashAdView.h 488 B

123456789101112131415161718192021222324
  1. //
  2. // FqAdsplashAdView.h
  3. // XenonSDK
  4. //
  5. // Created by fq on 2021/4/21.
  6. // Copyright © 2021 SAGESSE. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <BUAdSDK/BUAdSDK.h>
  10. #import "AdBase.h"
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface FqAdsplashAdView : AdBase
  13. -(instancetype)init;
  14. //1. 开屏广告
  15. @property (nonatomic, strong) BUSplashAdView *__nullable splashAdView;
  16. -(void)opensplashAd:(NSString *)adName callback:(void (^)(BOOL))callback;
  17. @end
  18. NS_ASSUME_NONNULL_END