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.
 
 
 
 

37 lines
838 B

//
// 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 (nonatomic ,strong) IBOutlet UIView *line;
@property (strong, nonatomic) NSString *regularStr;
@property (copy, nonatomic) DurationBlock durationBlock;
- (void)timeInputViewWithModel:(UIDatePickerMode)mode WithTextField:(UITextField*)textField WithDate:(NSDate*)nowDate;
@end