我在我的一个视图中实现了 datepicker,将 datepicker 添加到 Alertview 的方式。现在在 iOS 7 中,我无法在警报视图上找到日期选择器,当我搜索到时,我们无法在 iOS7 中向警报视图添加任何内容。
我的要求是当我选择 DOB 文本字段时,我必须显示 Datepickerview 并修改日期,更改的值将存储到文本字段中。
现在我的问题是如何在警报视图上显示日期选择器。
我尝试在视图上显示,但是当尝试从视图中删除 datpicker 时它不起作用。
我在我的一个视图中实现了 datepicker,将 datepicker 添加到 Alertview 的方式。现在在 iOS 7 中,我无法在警报视图上找到日期选择器,当我搜索到时,我们无法在 iOS7 中向警报视图添加任何内容。
我的要求是当我选择 DOB 文本字段时,我必须显示 Datepickerview 并修改日期,更改的值将存储到文本字段中。
现在我的问题是如何在警报视图上显示日期选择器。
我尝试在视图上显示,但是当尝试从视图中删除 datpicker 时它不起作用。
我知道这是一个较老的问题,但我相信以下允许 OP 要求的内容,并且我认为不会违反 Apple 涉及 AlertView 层次结构更改的规则:
- (void)requestDateOfBirth
{
UIDatePicker *birthDatePicker;
UIAlertView *setBirthDate;
NSDateFormatter *birthDateFormatter;
UITextField *birthDateInput;
//create the alertview
setBirthDate = [[UIAlertView alloc] initWithTitle:@"Date of Birth:"
message:nil
delegate:self
cancelButtonTitle:@"Cancel"
otherButtonTitles:@"OK", nil];
setBirthDate.alertViewStyle = UIAlertViewStylePlainTextInput;
//create the datepicker
birthDatePicker = [[UIDatePicker alloc] init];
[birthDatePicker addTarget:self action:@selector(dateChanged:) forControlEvents:UIControlEventValueChanged];
birthDatePicker.datePickerMode = UIDatePickerModeDate;
birthDatePicker.date = [NSDate date];
//get the textfield provided in the plain text alertview
birthDateInput = [setBirthDate textFieldAtIndex:0];
//change the textfields inputView to the date picker
birthDateInput.inputView = birthDatePicker;
[birthDateInput setTextAlignment:NSTextAlignmentCenter];
//create a date formatter to suitably show the date
birthDateFormatter = [[NSDateFormatter alloc] init];
[birthDateFormatter setDateStyle:NSDateFormatterShortStyle];
//set the current date into the textfield
birthDateInput.text = [birthDateFormatter stringFromDate:[NSDate date]];
//show the alert view and activate the textfield
[setBirthDate show];
[birthDateInput becomeFirstResponder];
}
然后不要忘记处理日期选择器中的更改
- (void) dateChanged:(id)sender
{
NSDateFormatter *birthDateFormatter;
UIDatePicker *birthDatePicker = (UIDatePicker *)sender;
birthDateFormatter = [[NSDateFormatter alloc] init];
[birthDateFormatter setDateStyle:NSDateFormatterShortStyle];
birthDateInput.text = [birthDateFormatter stringFromDate:birthDatePicker.date];
}
我希望这有帮助
的层次结构UIAlertView
是私有的,不应修改。
来自苹果文档
UIAlertView 类旨在按原样使用,不支持子类化。此类的视图层次结构是私有的,不得修改。
在 iOS 6 之前,您可以将一些视图添加到UIAlertView
子视图层次结构中,但这似乎在 iOS 7 上不再适用。contentView
自 beta4 版本以来,为 iOS7 宣布的属性已成为私有 ivar,因此无法发出addSubview
警报看法。
UIView *_contentViewNeue;
有关这方面的更多信息,请参阅此Apple 开发论坛讨论(您需要登录)
在这种情况下,您应该创建一个模仿的自定义视图UIAlertView
,然后使用它来添加选择器视图。
希望有帮助!