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