如何在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]];
}
如果有人知道解决方案,请提出建议。我真的很感谢你。
答案 0 :(得分:45)
以下是防止将来选择日期的简单代码:
dateofBirthDatePicker.maximumDate=[NSDate date];
答案 1 :(得分:11)
在Swift 2中:
self.datePicker.maximumDate = NSDate()
在Swift 3中:
self.datePicker.maximumDate = Date()
答案 2 :(得分:3)
在Swift 4.0.3 Xcode 9中
隐藏未来日期
self.picker.maximumDate = Date()
答案 3 :(得分:2)
您可以在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];
答案 4 :(得分:0)
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];