ios – 用UIDatePicker替换UITextField输入

前端之家收集整理的这篇文章主要介绍了ios – 用UIDatePicker替换UITextField输入前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个表视图控制器,其中包含一个表示日期的单元格.我跟着这篇文章How do I make a modal date picker that only covers half the screen?”,我有一个很大的例外 – 我不能让选择器消失!

我尝试注册事件UIControlEventTouchUpOutside,但似乎这不是由选择器生成的(或者至少在我使用它的模式下).

如何识别用户已完成选择日期?

还有,有没有办法禁止用户直接输入UITextField?我想强迫他们使用选择器.我看到这篇文章Disable blinking cursor in UITextField?”,但还有另一种方式吗?

Reagards,

– 约翰

解决方法

试试这个代码..在这里我将一个日期选择器放到uitextfield ..它将在右上角的导航栏中有一个完成按钮..所以通过点击完成我将用户可以解雇datepicker ..另一个最好的方法是通过推杆在具有完成按钮的日期选择器上方的工具栏..尝试这将工作..当更改日期选择器时,您可以填充文本字段..希望这有助于..

看到这个stackoverflow链接https://stackoverflow.com/a/4824319/763747这将有完成按钮的datepicker作为键盘上方的工具栏..

  1. #pragma mark -
  2. #pragma mark - TextField Delegate
  3.  
  4. - (BOOL)textFieldShouldReturn:(UITextField *)textField
  5. {
  6. [textField resignFirstResponder];
  7. return TRUE;
  8. }
  9.  
  10.  
  11. - (void) textFieldDidBeginEditing:(UITextField *)textField {
  12. itsRightBarButton.title = @"Done";
  13. itsRightBarButton.style = UIBarButtonItemStyleDone;
  14. itsRightBarButton.target = self;
  15. itsRightBarButton.action = @selector(doneAction:);
  16. if ([textField isEqual:itsIncidentDateTextField])
  17. {
  18. itsDatePicker = [[[UIDatePicker alloc] init] autorelease];
  19. itsDatePicker.datePickerMode = UIDatePickerModeDate;
  20. [itsDatePicker addTarget:self action:@selector(incidentDateValueChanged:) forControlEvents:UIControlEventValueChanged];
  21. //datePicker.tag = indexPath.row;
  22. textField.inputView = itsDatePicker;
  23. }
  24. }
  25.  
  26. - (IBAction) incidentDateValueChanged:(id)sender{
  27. NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
  28. [dateFormatter setDateFormat:@"MMM d,yyyy"];
  29. itsIncidentDateTextField.text = [dateFormatter stringFromDate:[itsDatePicker date]];
  30. [dateFormatter release];
  31. }

猜你在找的iOS相关文章