| 12345678910111213141516171819202122232425262728 |
- //
- // RAEditDateCell.h
- // Apex And Drivers
- //
- // Created by Jack on 2018/10/25.
- // Copyright © 2018年 USAI. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @class RAEditDateModel,RAEditDateCell;
- @protocol RAEditDateCellDelegate <NSObject>
- - (void)dateCell:(RAEditDateCell *)cell didClickForModel:(RAEditDateModel *)model;
- @end
- @interface RAEditDateCell : UITableViewCell
- @property (nonatomic,weak) RAEditDateModel *model;
- @property (nonatomic,weak) id<RAEditDateCellDelegate> delegate;
- @end
- NS_ASSUME_NONNULL_END
|