123456789101112131415161718192021222324 |
- //
- // FqAdsplashAdView.h
- // XenonSDK
- //
- // Created by fq on 2021/4/21.
- // Copyright © 2021 SAGESSE. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import <BUAdSDK/BUAdSDK.h>
- #import "AdBase.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface FqAdsplashAdView : AdBase
- -(instancetype)init;
- //1. 开屏广告
- @property (nonatomic, strong) BUSplashAdView *__nullable splashAdView;
- -(void)opensplashAd:(NSString *)adName callback:(void (^)(BOOL))callback;
- @end
- NS_ASSUME_NONNULL_END
|