RADetailActionsCell.h 880 B

12345678910111213141516171819202122232425262728
  1. //
  2. // RADetailActionsCell.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 RADetailActionCollectionModel,RADetailActionModel,RADetailActionsLayout,RADetailActionsCell,RADetailActionSubCell;
  10. @protocol RAdetailActionsCellDelegate <NSObject>
  11. - (void)actionsCell:(RADetailActionsCell *)cell didClickSubCell:(RADetailActionSubCell *)subCell forModel:(RADetailActionModel *)model;
  12. @end
  13. @interface RADetailActionsCell : UITableViewCell
  14. @property (nonatomic,strong) RADetailActionCollectionModel *model;
  15. @property (nonatomic,weak,readonly) RADetailActionsLayout *actionLayout;
  16. @property (nonatomic,weak) id<RAdetailActionsCellDelegate> delegate;
  17. - (NSInteger)actionNumberForSection:(NSInteger)section;
  18. - (RADetailActionModel *)actionModelForIndexPath:(NSIndexPath *)indexPath;
  19. @end