UIDatePicker模式时间限制时间选择或设置时间范围



我写了以下一段代码来带来一个选择时间的敌人。 现在工作正常 我想知道如何在上午 9 点到下午 5 点之间设置时间范围。请有人帮助我实现将时间选择限制在上午 9 点至下午 5 点之间的要求。

@interface CleaningDetails ()<UITextFieldDelegate>
{
IBOutlet TextFieldValidator *cleanTime;
UIDatePicker *time;
}
@implementation
       time = [[UIDatePicker alloc] initWithFrame:CGRectMake(0, 0, 0, 0)];
        time.datePickerMode = UIDatePickerModeTime;
        time.minuteInterval = 30;
        // set change the inputView (default is keyboard) to UIPickerView
        [self.cleanTime setInputView:time];
        // add a toolbar with Cancel & Done button
        UIToolbar *toolBar1 = [[UIToolbar alloc] initWithFrame:CGRectMake(0, 0, 320, 44)];
        toolBar1.barStyle = UIBarStyleBlackOpaque;
        UIBarButtonItem *doneButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemDone target:self action:@selector(showSelectedTime)];
        UIBarButtonItem *cancelButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel target:self action:@selector(cancelTouched:)];
        // the middle button is to make the Done button align to right
        [toolBar1 setItems:[NSArray arrayWithObjects:cancelButton, [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil], doneButton, nil]];
        [self.cleanTime setInputAccessoryView:toolBar1];

我对这个编程和objective-C真的很陌生,特别是任何人都可以向我建议一些来源或任何想法来完成这个要求。

UIDatePicker 仅支持最小和最大日期,不支持时间。 但是您将使用时间间隔设置时间,请使用下面的代码并设置您的时间,

NSDate *minDate = [NSDate new];
// One hour from now
NSDate *maxDate = [[NSDate alloc] initWithTimeIntervalSinceNow:60*60];
UIDatePicker *picker = [UIDatePicker new];
[picker setDatePickerMode:UIDatePickerModeDateAndTime];
[picker setMinimumDate:minDate];
[picker setMaximumDate:maxDate];

希望它有帮助

试试这段代码,

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    startTime.text = [NSString stringWithFormat:@"%@",[self beginningOfDay:[NSDate new]]];
    endTime.text = [NSString stringWithFormat:@"%@",[self endOfDay:[NSDate new]]];
}
    -(NSDate *)beginningOfDay:(NSDate *)date
    {
        NSCalendar *cal = [NSCalendar currentCalendar];
        NSDateComponents *components = [cal components:( NSDayCalendarUnit | NSMonthCalendarUnit | NSYearCalendarUnit | NSHourCalendarUnit | NSMinuteCalendarUnit | NSSecondCalendarUnit ) fromDate:date];
        [components setHour:9];
        [components setMinute:0];
        [components setSecond:0];
        return [cal dateFromComponents:components];
    }
    -(NSDate *)endOfDay:(NSDate *)date
    {
        NSCalendar *cal = [NSCalendar currentCalendar];
        NSDateComponents *components = [cal components:(NSDayCalendarUnit | NSMonthCalendarUnit | NSYearCalendarUnit | NSHourCalendarUnit | NSMinuteCalendarUnit | NSSecondCalendarUnit ) fromDate:date];
        [components setHour:17];
        [components setMinute:0];
        [components setSecond:0];
        return [cal dateFromComponents:components];
    }

您将获得返回时间,然后将 UTC 时间转换为本地时间,

希望它有帮助。

最新更新