| 12345678910111213141516171819202122232425 |
- //
- // RADetailActionSubCell.h
- // Apex And Drivers
- //
- // Created by Jack on 2018/6/2.
- // Copyright © 2018年 USAI. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @class RADetailActionModel,RADetailActionSubCell;
- @protocol RADetailActionSubCellDelegate <NSObject>
- - (void)actionSubCell:(RADetailActionSubCell *)cell didClickForModel:(RADetailActionModel *)model;
- @end
- @interface RADetailActionSubCell : UICollectionViewCell
- @property (nonatomic,strong) RADetailActionModel *model;
- @property (nonatomic,weak) id <RADetailActionSubCellDelegate> delegate;
- @end
|