RADetailActionSubCell.h 571 B

12345678910111213141516171819202122232425
  1. //
  2. // RADetailActionSubCell.h
  3. // Apex And Drivers
  4. //
  5. // Created by Jack on 2018/6/2.
  6. // Copyright © 2018年 USAI. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class RADetailActionModel,RADetailActionSubCell;
  10. @protocol RADetailActionSubCellDelegate <NSObject>
  11. - (void)actionSubCell:(RADetailActionSubCell *)cell didClickForModel:(RADetailActionModel *)model;
  12. @end
  13. @interface RADetailActionSubCell : UICollectionViewCell
  14. @property (nonatomic,strong) RADetailActionModel *model;
  15. @property (nonatomic,weak) id <RADetailActionSubCellDelegate> delegate;
  16. @end