iphone应用程序链接日历与文本字段

时间:2011-08-05 13:05:54

标签: iphone

在我的应用程序中,我想textField用户可以放置日期。现在我需要日历,以便用户从中选择日期,并自动填入textField。 这样做的最佳方法是什么。

由于

3 个答案:

答案 0 :(得分:1)

UIDatePicker将允许用户轻松选择日期。

答案 1 :(得分:1)

uidatepicker并更改值

答案 2 :(得分:1)

我建立了一个花哨的UITextField课程,将UIDatePicker设为inputView。对此的主要价值在于,当用户点击文本字段时,日期选择器会在键盘通常所在的位置显示。

UIDatePicker *input = [[UIDatePicker alloc] init];
[input addTarget:self action:@selector(update:) forControlEvents:UIControlEventValueChanged];
(UITextField *)myTextField.inputView = input;
[input release];

然后,在-[update:]方法中,使用NSDateFormatter在文本字段中设置文字。