RAEditDateCell.h 553 B

12345678910111213141516171819202122232425262728
  1. //
  2. // RAEditDateCell.h
  3. // Apex And Drivers
  4. //
  5. // Created by Jack on 2018/10/25.
  6. // Copyright © 2018年 USAI. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @class RAEditDateModel,RAEditDateCell;
  11. @protocol RAEditDateCellDelegate <NSObject>
  12. - (void)dateCell:(RAEditDateCell *)cell didClickForModel:(RAEditDateModel *)model;
  13. @end
  14. @interface RAEditDateCell : UITableViewCell
  15. @property (nonatomic,weak) RAEditDateModel *model;
  16. @property (nonatomic,weak) id<RAEditDateCellDelegate> delegate;
  17. @end
  18. NS_ASSUME_NONNULL_END