SelectCheckDateCell.h 465 B

123456789101112131415161718192021222324
  1. //
  2. // SelectCheckDateCell.h
  3. // DFCalendar
  4. //
  5. // Created by Macsyf on 16/12/7.
  6. // Copyright © 2016年 ZhouDeFa. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "MouthModel.h"
  10. typedef void(^SelectedDay)(NSInteger day);
  11. @interface SelectCheckDateCell : UITableViewCell
  12. -(void)fullCellWithModel:(MouthModel *)model;
  13. @property(nonatomic,copy)SelectedDay selectedDay;
  14. -(void)selectedDay:(SelectedDay)selectedDay;
  15. -(void)setToday:(BOOL )isToday;
  16. @end