admin
2022-09-04 fa05f89529e05078b29606e4beda3de5cfdce485
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//
//  GDTSplashAdNetworkAdapterProtocol.h
//  GDTMobApp
//
//  Created by royqpwang on 2019/7/27.
//  Copyright © 2019 Tencent. All rights reserved.
//
 
#import <Foundation/Foundation.h>
#import "GDTBaseAdNetworkAdapterProtocol.h"
#import "GDTSplashZoomOutView.h"
#import "GDTServerSideVerificationOptions.h"
 
@protocol GDTSplashAdNetworkConnectorProtocol;
 
NS_ASSUME_NONNULL_BEGIN
 
@protocol GDTSplashAdNetworkAdapterProtocol <GDTBaseAdNetworkAdapterProtocol>
 
@property (nonatomic, assign) NSInteger fetchDelay;
 
@property (nonatomic, strong) UIImage *backgroundImage;
 
@property (nonatomic, copy) UIColor *backgroundColor;
 
@property (nonatomic, assign) CGPoint skipButtonCenter;
 
@property (nonatomic, assign) BOOL needZoomOut;
 
@property (nonatomic, strong, readonly, nullable) GDTSplashZoomOutView *splashZoomOutView;
@property (nonatomic, assign) BOOL shouldLoadFullscreenAd;
 
@property (nonatomic, strong) GDTServerSideVerificationOptions *serverSideVerificationOptions;
 
- (BOOL)isAdValid;
- (void)loadAd;
- (void)showAdInWindow:(UIWindow *)window withBottomView:(UIView *_Nullable)bottomView skipView:(UIView *)skipView;
 
@end
 
NS_ASSUME_NONNULL_END