GromoreDemoAdHandleCell.h 748 B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // ABUDemoAdHandleCell.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 "GromoreAdLoadParam.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @class GromoreDemoAdHandleCell;
  12. @protocol GromoreDemoAdHandleDelegate <NSObject>
  13. - (void)showConsole:(BOOL)ifShowConsole;
  14. - (void)loadButtonDidClick:(GromoreDemoAdHandleCell *)sender;
  15. - (void)showButtonDidClick:(GromoreDemoAdHandleCell *)sender;
  16. @end
  17. @interface GromoreDemoAdHandleCell : UITableViewCell
  18. @property (nonatomic, weak) id<GromoreDemoAdHandleDelegate>delegate;
  19. @property (nonatomic, assign, readonly) BOOL showAdAfterLoad;
  20. - (void)changeAdStatus:(GromoreDemoAdStatus)adStatus;
  21. @end
  22. NS_ASSUME_NONNULL_END