You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
533 B
18 lines
533 B
// |
|
// 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
|
|
|