GDTNativeExpressAdNetworkAdapterProtocol.h 777 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // GDTNativeExpressAdNetworkAdapterProtocol.h
  3. // GDTMobApp
  4. //
  5. // Created by royqpwang on 2019/11/27.
  6. // Copyright © 2019 Tencent. All rights reserved.
  7. //
  8. #import "GDTBaseAdNetworkAdapterProtocol.h"
  9. @protocol GDTNativeExpressAdNetworkConnectorProtocol;
  10. NS_ASSUME_NONNULL_BEGIN
  11. @protocol GDTNativeExpressAdNetworkAdapterProtocol <GDTBaseAdNetworkAdapterProtocol>
  12. - (void)loadAdWithCount:(NSInteger)count;
  13. @optional
  14. @property (nonatomic, assign) BOOL videoAutoPlayOnWWAN;
  15. @property (nonatomic, assign) BOOL videoMuted;
  16. @property (nonatomic, assign) BOOL detailPageVideoMuted;
  17. @property (nonatomic, assign) NSInteger minVideoDuration;
  18. @property (nonatomic, assign) NSInteger maxVideoDuration;
  19. @property (nonatomic, assign) CGSize adSize;
  20. @end
  21. NS_ASSUME_NONNULL_END