iPhone датапикер вместо клавиатуры? - PullRequest
34 голосов
/ 24 января 2011

Как бы вы это сделали?

У меня есть форма с UITextField. Когда я нажимаю на него, я хотел бы отобразить UIDatePicker вместо клавиатуры по умолчанию, которая появляется по умолчанию? Обратите внимание, что в моей форме есть и другие элементы.

Ответы [ 5 ]

86 голосов
/ 08 апреля 2011

Я думаю, что это более официальный способ сделать это:

UIDatePicker *datePicker = [[[UIDatePicker alloc] init] autorelease];
datePicker.datePickerMode = UIDatePickerModeDate;
[datePicker addTarget:self action:@selector(datePickerValueChanged:) forControlEvents:UIControlEventValueChanged];
datePicker.tag = indexPath.row;
textField.inputView = datePicker;
9 голосов
/ 28 августа 2012

в .ч

UIDatePicker *datePicker;
NSDate *date;
UIToolbar *keyboardToolbar;

в ViewDidLoad:

if (keyboardToolbar == nil) {
    keyboardToolbar = [[UIToolbar alloc] initWithFrame:CGRectMake(0, 0, self.view.bounds.size.width, 44)];
    [keyboardToolbar setBarStyle:UIBarStyleBlackTranslucent];

    UIBarButtonItem *extraSpace = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil];

    UIBarButtonItem *accept = [[UIBarButtonItem alloc] initWithTitle:@"Accept" style:UIBarButtonItemStyleDone target:self action:@selector(closeKeyboard:)];

    [keyboardToolbar setItems:[[NSArray alloc] initWithObjects: extraSpace, accept, nil]];
}

self.txtDate.inputAccessoryView = keyboardToolbar;

datePicker = [[UIDatePicker alloc] init];
datePicker.datePickerMode = UIDatePickerModeDate;
[datePicker addTarget:self action:@selector(datePickerValueChanged:) forControlEvents:UIControlEventValueChanged];

self.txtDate.inputView = datePicker;


- (void)datePickerValueChanged:(id)sender{

date = datePicker.date;

NSDateFormatter *df = [[NSDateFormatter alloc] init];
[df setDateFormat:@"dd/MM/YYYY"];


[self.txtDate setText:[df stringFromDate:date]];
}

в раскадровке добавить в txtDate -> EditingDidEnd

- (IBAction)establishHour:(id)sender{

hour = hourPicker.date;

NSDateFormatter *hf = [[NSDateFormatter alloc] init];
[hf setDateFormat:@"HH:MM"];

[self.txtHour setText:[hf stringFromDate:hour]];

}

Устанавливает клавиатуру в качестве DatePicker и создает панель инструментов с кнопкой для подтверждения выбора.

5 голосов
/ 29 октября 2015

Я перевел ответ Йохана Кула на быстрый, если кому-то понравится.Я поместил код в viewDidLoad.

let datePicker = UIDatePicker()
datePicker.datePickerMode = UIDatePickerMode.Date
datePicker.addTarget(self, action: "datePickerValueChanged:", forControlEvents: UIControlEvents.ValueChanged)
textField.inputView = datePicker
0 голосов
/ 04 июля 2014

Добавлено в .h файлах:

UIViewController <UIPickerViewDelegate, UIPickerViewDataSource> 

Добавлено в файлы .m:

{

NSDateFormatter *df = [[NSDateFormatter alloc] init];

df.dateStyle = NSDateFormatterMediumStyle;

pTxtDate.text = [NSString stringWithFormat:@"%@",

[df stringFromDate:[NSDate date]]];

NSLog(@"pTxtDate.text %@",pTxtDate.text);

[df release];

[self.view addSubview:pTxtDate]; 

[pTxtDate release];

DatePicker = [[UIDatePicker alloc] initWithFrame:CGRectMake(0, 250, 325, 300)];

DatePicker.datePickerMode = UIDatePickerModeDate;

DatePicker.hidden = NO;

DatePicker.date = [NSDate date];

[DatePicker addTarget:self

  action:@selector(LabelChange:)

forControlEvents:UIControlEventValueChanged];

[self.view addSubview:DatePicker];

    [DatePicker release];

}



- (void)LabelChange:(id)sender {

NSDateFormatter *df = [[NSDateFormatter alloc] init];

df.dateStyle = NSDateFormatterMediumStyle;

pTxtDate.text = [NSString stringWithFormat:@"%@",

[df stringFromDate:DatePicker.date]];

}
0 голосов
/ 29 ноября 2013
(IBAction)estableceHora:(id)sender{
   Hora = horaPicker.date;
   NSDateFormatter *hf = [[NSDateFormatter alloc] init];
   [hf setDateFormat:@"HH:MM"];
   [self.txtHora setText:[hf stringFromDate:Hora]];
}
...