如何在 UIDatePicker 中禁用未来的日期、月份和年份?

Posted

技术标签:

【中文标题】如何在 UIDatePicker 中禁用未来的日期、月份和年份?【英文标题】:How to disable future dates,months and year in UIDatePicker? 【发布时间】:2014-07-17 14:53:24 【问题描述】:

如何在 UIDatePicker 中隐藏未来的日期,以便用户仅选择过去和当前的生日年份。

我搜索了很多来源,但我无法得到想要的结果。

这是我的代码,

 dateofBirthDatePicker = [[UIDatePicker alloc] initWithFrame:CGRectMake(0.0, 44.0, 0.0, 0.0)];

    dateofBirthDatePicker.datePickerMode = UIDatePickerModeDate;
    [dateofBirthDatePicker setBackgroundColor:DATE_PICKER_GRAY_COLOR];

//    UILabel *label = [UILabel appearanceWhenContainedIn:[UITableView class],[UIDatePicker class], nil];
//    label.font = HELVETICA_NEUE(24);
//    label.textColor = GREEN_COLOR;
    [dateofBirthDatePicker addTarget:self
                              action:@selector(LabelChange:)
                    forControlEvents:UIControlEventValueChanged];
    dateofbirthTextField.inputView = dateofBirthDatePicker;
    [self datePickerToolBar];


- (void)LabelChange:(id)sender

    NSDateFormatter *dateFormat= [[NSDateFormatter alloc] init];
    [dateFormat setDateFormat:@"dd/MM/yyyy"];
    dateofbirthTextField.text = [NSString stringWithFormat:@"%@",
                                [dateFormat stringFromDate:dateofBirthDatePicker.date]];

如果有人知道解决方案,请提出建议。我真的很感激你。

【问题讨论】:

【参考方案1】:

这是防止未来日期选择的简单代码:

dateofBirthDatePicker.maximumDate=[NSDate date];

在斯威夫特中:

dateofBirthDatePicker.maximumDate = Date()

【讨论】:

【参考方案2】:

在 Swift 2 中:

self.datePicker.maximumDate = NSDate()

在 Swift 3 中:

self.datePicker.maximumDate = Date()

【讨论】:

【参考方案3】:

在 Swift 4.0.3 Xcode 9 中

隐藏未来日期

self.picker.maximumDate = Date()

【讨论】:

【参考方案4】:

您可以在 UIDatePicker 对象上使用 setMaximumDate: 和 setMinimumDate::

[dateofBirthDatePicker setMaximumDate:[NSDate date]]; // The max date will be today

// Optional you can set up min date as well
[dateofBirthDatePicker setMinimumDate:yourMinDate];

【讨论】:

【参考方案5】:
NSCalendar *calendar = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
NSDate *currentDate = [NSDate date];
NSDateComponents *comps = [[NSDateComponents alloc] init];
[comps setYear:1];
NSDate *maxDate = [calendar dateByAddingComponents:comps toDate:currentDate options:0];
[comps setYear:-30];
NSDate *minDate = [calendar dateByAddingComponents:comps toDate:currentDate options:0];

[datePicker setMaximumDate:maxDate];
[datePicker setMinimumDate:minDate];

【讨论】:

以上是关于如何在 UIDatePicker 中禁用未来的日期、月份和年份?的主要内容,如果未能解决你的问题,请参考以下文章

如何在 iOS 的 UIDatePicker 中禁用以前的时间

UIDatePicker 仅显示特定日期

UIDatePicker,根据今天的日期设置最大和最小日期

如何禁用日历中的未来日期? [复制]

如何在 UIDatePicker 中禁用 AM/PM

如何在日历视图中禁用未来日期[重复]