| 12345678910111213141516171819202122232425262728 |
- //
- // RADetailActionsCell.h
- // Apex And Drivers
- //
- // Created by Jack on 2018/6/2.
- // Copyright © 2018年 USAI. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @class RADetailActionCollectionModel,RADetailActionModel,RADetailActionsLayout,RADetailActionsCell,RADetailActionSubCell;
- @protocol RAdetailActionsCellDelegate <NSObject>
- - (void)actionsCell:(RADetailActionsCell *)cell didClickSubCell:(RADetailActionSubCell *)subCell forModel:(RADetailActionModel *)model;
- @end
- @interface RADetailActionsCell : UITableViewCell
- @property (nonatomic,strong) RADetailActionCollectionModel *model;
- @property (nonatomic,weak,readonly) RADetailActionsLayout *actionLayout;
- @property (nonatomic,weak) id<RAdetailActionsCellDelegate> delegate;
- - (NSInteger)actionNumberForSection:(NSInteger)section;
- - (RADetailActionModel *)actionModelForIndexPath:(NSIndexPath *)indexPath;
- @end
|