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.
35 lines
773 B
35 lines
773 B
![]()
2 years ago
|
//
|
||
|
// 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
|