// // AddWeekTableViewCell.h // tongxin // // Created by WeiChaoZheng on 2018/7/4. // Copyright © 2018年 xTT. All rights reserved. // #import "TableCell.h" typedef void(^WeekSelectBlack)(NSString *selectWeek); @interface AddWeekTableViewCell : baseCell @property (strong, nonatomic) IBOutlet UILabel *aTitleLabel; @property (strong, nonatomic) IBOutlet UIView *weekBtnView; @property (copy, nonatomic) WeekSelectBlack weekSelectBlack; @property (strong, nonatomic) NSString *weekStr; -(void)setWeek:(NSString *)weekStr; @end