GDTSplashAdNetworkAdapterProtocol.h 893 B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // GDTSplashAdNetworkAdapterProtocol.h
  3. // GDTMobApp
  4. //
  5. // Created by royqpwang on 2019/7/27.
  6. // Copyright © 2019 Tencent. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "GDTBaseAdNetworkAdapterProtocol.h"
  10. #import "GDTServerSideVerificationOptions.h"
  11. @protocol GDTSplashAdNetworkConnectorProtocol;
  12. NS_ASSUME_NONNULL_BEGIN
  13. @protocol GDTSplashAdNetworkAdapterProtocol <GDTBaseAdNetworkAdapterProtocol>
  14. @property (nonatomic, assign) NSInteger fetchDelay;
  15. @property (nonatomic, strong) UIImage *backgroundImage;
  16. @property (nonatomic, copy) UIColor *backgroundColor;
  17. @property (nonatomic, assign) CGPoint skipButtonCenter;
  18. @property (nonatomic, assign) BOOL shouldLoadFullscreenAd;
  19. - (BOOL)isAdValid;
  20. - (void)loadAd;
  21. - (void)showAdInWindow:(UIWindow *)window withBottomView:(UIView *_Nullable)bottomView skipView:(UIView *)skipView;
  22. @end
  23. NS_ASSUME_NONNULL_END