// // DurationTimeTableViewCell.h // tongxin // // Created by WeiChaoZheng on 2018/7/4. // Copyright © 2018年 xTT. All rights reserved. // #import "TableCell.h" typedef void(^DurationBlock)(NSString *textStr,BOOL isStart); @interface DurationTimeTableViewCell : baseCell /** 开始时间 */ @property (strong, nonatomic) IBOutlet UITextField *startTextField; /** 结束时间 */ @property (strong, nonatomic) IBOutlet UITextField *endTextField; /** 标题 */ @property (strong, nonatomic) IBOutlet UILabel *aTitleLabel; @property (strong, nonatomic) NSString *regularStr; @property (copy, nonatomic) DurationBlock durationBlock; - (void)timeInputViewWithModel:(UIDatePickerMode)mode WithTextField:(UITextField*)textField WithDate:(NSDate*)nowDate; @end