0

UIPickerView の選択と非表示

これを使用して、テキスト フィールドを「タッチダウン」したときに日付ピッカー ビューをポップアップ表示しました。つまり、日付ピッカー ビューで選択したものを内容として表示するには、テキスト フィールドが必要です。

必要な日時を選択して [完了] ボタンをクリックすると、テキスト フィールドに入力内容が表示されません。

私は何が欠けていますか?

- (IBAction)showPicker:(id)sender {

// create a UIPicker view as a custom keyboard view
UIDatePicker* pickerView = [[UIDatePicker alloc] init];
[pickerView sizeToFit];
pickerView.autoresizingMask = (UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight);
//pickerView.delegate = self;
//pickerView.dataSource = self;
//pickerView.showsSelectionIndicator = YES;
self.datePickerView = pickerView;  //UIDatePicker



fromDate.inputView = pickerView;



// create a done view + done button, attach to it a doneClicked action, and place it in a toolbar as an accessory input view...
// Prepare done button
UIToolbar* keyboardDoneButtonView = [[UIToolbar alloc] init];
keyboardDoneButtonView.barStyle = UIBarStyleBlack;
keyboardDoneButtonView.translucent = YES;
keyboardDoneButtonView.tintColor = nil;
[keyboardDoneButtonView sizeToFit];

UIBarButtonItem* doneButton = [[[UIBarButtonItem alloc] initWithTitle:@"Done"
                                                                style:UIBarButtonItemStyleBordered target:self
                                                               action:@selector(pickerDoneClicked:)] autorelease];

fromDate.text = (NSString *)datePickerView.date; // fromDate is the Text Field outlet, where I am trying to display the selection on the picker.

[keyboardDoneButtonView setItems:[NSArray arrayWithObjects:doneButton, nil]];

// Plug the keyboardDoneButtonView into the text field...
fromDate.inputAccessoryView = keyboardDoneButtonView;  

[pickerView release];
[keyboardDoneButtonView release];
}

- (IBAction)pickerDoneClicked:(id)sender {

    [fromDate resignFirstResponder];
}
4

1 に答える 1

1

UIControlEventValueChanged のピッカーのセレクターを設定する必要があります

 [datePicker addTarget:self
               action:@selector(setDate:)
     forControlEvents:UIControlEventValueChanged];


 - (void)setDate:(id)sender{

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

     df.dateStyle = NSDateFormatterMediumStyle;

     date.text = [NSString stringWithFormat:@"%@",
                  [df stringFromDate:datePicker.date]];

}
于 2012-07-17T08:27:51.477 に答える