GromoreDemoAdBasicInfoCell.h 497 B

123456789101112131415161718192021222324252627
  1. //
  2. // ABUDemoBasicInfoCell.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. @class GromoreAdLoadConfig;
  10. NS_ASSUME_NONNULL_BEGIN
  11. @protocol GromoreDemoSelectedAdDelegate <NSObject>
  12. - (void)didSelectAdConfig:(GromoreAdLoadConfig *)adConfig;
  13. @end
  14. @interface GromoreDemoAdBasicInfoCell : UITableViewCell
  15. @property (nonatomic, weak)id <GromoreDemoSelectedAdDelegate> delegate;
  16. @end
  17. NS_ASSUME_NONNULL_END