GDTSplashZoomOutView.h 925 B

12345678910111213141516171819202122232425262728
  1. //
  2. // GDTSplashZoomOutView.h
  3. // GDTMobApp
  4. //
  5. // Created by nimomeng on 2020/11/11.
  6. // Copyright © 2020 Tencent. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @class GDTSplashZoomOutView;
  11. @protocol GDTSplashZoomOutViewDelegate <NSObject>
  12. @optional
  13. - (void)splashZoomOutViewDidClick:(GDTSplashZoomOutView *)splashZoomOutView;
  14. - (void)splashZoomOutViewAdDidClose:(GDTSplashZoomOutView *)splashZoomOutView;
  15. - (void)splashZoomOutViewAdVideoFinished:(GDTSplashZoomOutView *)splashZoomOutView;
  16. - (void)splashZoomOutViewAdDidPresentFullScreenModal:(GDTSplashZoomOutView *)splashZoomOutView;
  17. - (void)splashZoomOutViewAdDidDismissFullScreenModal:(GDTSplashZoomOutView *)splashZoomOutView;
  18. @end
  19. @interface GDTSplashZoomOutView : UIView
  20. @property (nonatomic, weak) UIViewController *rootViewController;
  21. @property (nonatomic, weak) id<GDTSplashZoomOutViewDelegate> delegate;
  22. @end
  23. NS_ASSUME_NONNULL_END