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
//
//  GDTNativeExpressAdNetworkAdapterProtocol.h
//  GDTMobApp
//
//  Created by royqpwang on 2019/11/27.
//  Copyright © 2019 Tencent. All rights reserved.
//
 
#import "GDTBaseAdNetworkAdapterProtocol.h"
 
@protocol GDTNativeExpressAdNetworkConnectorProtocol;
 
NS_ASSUME_NONNULL_BEGIN
 
@protocol GDTNativeExpressAdNetworkAdapterProtocol <GDTBaseAdNetworkAdapterProtocol>
 
- (void)loadAdWithCount:(NSInteger)count;
 
@optional
@property (nonatomic, assign) BOOL videoAutoPlayOnWWAN;
@property (nonatomic, assign) BOOL videoMuted;
@property (nonatomic, assign) BOOL detailPageVideoMuted;
@property (nonatomic, assign) NSInteger minVideoDuration;
@property (nonatomic, assign) NSInteger maxVideoDuration;
@property (nonatomic, assign) CGSize adSize;
 
@end
 
NS_ASSUME_NONNULL_END