GromoreDemoLoadAdView.h 787 B

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // ABUDemoLoadAdView.h
  3. // ABUDemo
  4. //
  5. // Created by heyinyin on 2021/12/15.
  6. // Copyright © 2021 bytedance. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "GromoreDemoAdHandleCell.h"
  10. #import "GromoreAdLoadConfig.h"
  11. #import "GromoreAdLoadParam.h"
  12. NS_ASSUME_NONNULL_BEGIN
  13. @protocol GromoreDemoLoadAdViewDelegate <NSObject>
  14. - (void)startLoadAdWithConfig:(GromoreAdLoadConfig *)config andParam:(GromoreAdLoadParam *)param;
  15. - (void)startShowAd;
  16. @end
  17. @interface GromoreDemoLoadAdView : UIView
  18. @property (nonatomic, strong) UIView *backView;
  19. @property (nonatomic, weak) id <GromoreDemoLoadAdViewDelegate> delegate;
  20. - (void)adStatusChanged:(GromoreDemoAdStatus)status;
  21. @property (nonatomic, copy) void(^updateTitleAction)(NSString *title);
  22. @end
  23. NS_ASSUME_NONNULL_END