MonthTableViewCell.h 457 B

12345678910111213141516
  1. //
  2. // MonthTableViewCell.h
  3. // BJTResearch
  4. //
  5. // Created by yunlong on 17/5/12.
  6. // Copyright © 2017年 yunlong. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class MonthModel,DayModel;
  10. typedef void(^SelectedDay)(DayModel *returnDaymodel);
  11. @interface MonthTableViewCell : UITableViewCell
  12. @property(nonatomic,strong) MonthModel *model;
  13. @property(nonatomic,copy)SelectedDay selectedDay;
  14. + (instancetype)cellWithTableView:(UITableView *)tableView;
  15. @end