3

我在我的一个视图中实现了 datepicker,将 datepicker 添加到 Alertview 的方式。现在在 iOS 7 中,我无法在警报视图上找到日期选择器,当我搜索到时,我们无法在 iOS7 中向警报视图添加任何内容。

我的要求是当我选择 DOB 文本字段时,我必须显示 Datepickerview 并修改日期,更改的值将存储到文本字段中。

现在我的问题是如何在警报视图上显示日期选择器。

我尝试在视图上显示,但是当尝试从视图中删除 datpicker 时它不起作用。

4

3 回答 3

3

我知道这是一个较老的问题,但我相信以下允许 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];
}

我希望这有帮助

于 2014-02-03T13:06:15.083 回答
1

在 iOS 7 中,您可以使用

[alertView setValue:yourDataPicker forKey:@"accessoryView"];

完整的解释在这里

于 2014-02-17T10:11:07.747 回答
0

的层次结构UIAlertView是私有的,不应修改。

来自苹果文档

UIAlertView 类旨在按原样使用,不支持子类化。此类的视图层次结构是私有的,不得修改。

在 iOS 6 之前,您可以将一些视图添加到UIAlertView子视图层次结构中,但这似乎在 iOS 7 上不再适用。contentView自 beta4 版本以来,为 iOS7 宣布的属性已成为私有 ivar,因此无法发出addSubview警报看法。

UIView *_contentViewNeue;

有关这方面的更多信息,请参阅此Apple 开发论坛讨论(您需要登录)

在这种情况下,您应该创建一个模仿的自定义视图UIAlertView,然后使用它来添加选择器视图。

希望有帮助!

于 2013-09-24T07:32:16.827 回答