resignFirstResponder 没有按预期工作

Posted

技术标签:

【中文标题】resignFirstResponder 没有按预期工作【英文标题】:resignFirstResponder is not working as expected 【发布时间】:2013-02-14 11:17:09 【问题描述】:

我有 uitextfield 在 uitableview 中输入国家/地区值。当点击该字段时,我正在显示加载了国家/地区值的表格视图。

当点击任何单元格时,它会返回到相同的表单并在国家字段中添加选定的值。我的意思是我将选定的值分配给 viewwillappear 方法内的文本字段。在国家字段内设置文本后。我想辞职键盘,所以我添加了resignFirstResponder,但它不是辞职键盘。

下面是我的代码:

 - (void)textFieldDidBeginEditing:(UITextField *)textField;
    
      if( textField == self.myCountryField )

        aCountryListView = 
            [[LCCountryListViewController alloc]init]; 

        UINavigationController *navigationController = 
            [[UINavigationController alloc] 
             initWithRootViewController:aCountryListView];

        [self presentModalViewController:navigationController animated:YES];

      
    
-(void)viewWillAppear:(BOOL)animated
//-----------------------------------

  self.myCountryField.text = aCountryListView.mySelectedCountry;

  [self.myCountryField resignFirstResponder];

  [[NSNotificationCenter defaultCenter] addObserver:self 
    selector:@selector(keyboardWillShow:) 
    name:UIKeyboardWillShowNotification object:nil];

  [[NSNotificationCenter defaultCenter] addObserver:self 
  selector:@selector(keyboardWillHide:) name:UIKeyboardWillHideNotification object:nil];



// Customize the appearance of table view cells.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:
(NSIndexPath *)indexPath 
//-------------------------------------------------------------------------------
  
  static NSString *CellIdentifier = @"PoetNameCell";

  UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

  if (cell == nil) 
  
      cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];

    cell.selectionStyle = UITableViewCellSelectionStyleNone;

   cell.backgroundColor = [UIColor clearColor];

    if( indexPath.row == 0 )

      UILabel *aLblTitle = [[UILabel alloc]initWithFrame:CGRectMake(5, 5, 220, 30)];
      aLblTitle.backgroundColor = [UIColor clearColor];
      aLblTitle.font = [UIFont fontWithName:@"Palatino-Bold" size:16.0];
      aLblTitle.text = NSLocalizedString(@"Country","Country");
      aLblTitle.textColor = [UIColor whiteColor];
      [cell.contentView addSubview:aLblTitle];

      myCountryField = [[UITextField alloc]initWithFrame:CGRectMake(133,5,150,30)];
      myCountryField.backgroundColor = [UIColor whiteColor];
      myCountryField.delegate = self;
      myCountryField.borderStyle = UITextBorderStyleRoundedRect;

      [cell.contentView addSubview:myCountryField];
    
  return cell;

【问题讨论】:

【参考方案1】:

使用下面的代码,希望对你有所帮助。

- (BOOL)textFieldShouldReturn:(UITextField *)textField 
 

  [self.view endEditing:YES];

  return YES;

确保您将代理连接到xib-file 中的fileowner。或在viewDidload 中使用以下代码。

yourtextfield.delegate=self;

并在您的 .h 文件中使用 <UITextfielddelegate>

【讨论】:

【参考方案2】:

希望以下代码在添加 UITextField 委托时能够正常工作

 - (BOOL)textFieldShouldReturn:(UITextField *)textField 
 

  [self.myCountryField resignFirstResponder];

  return YES;

【讨论】:

【参考方案3】:

改用这个怎么样:

[[UIApplication sharedApplication] sendAction:@selector(resignFirstResponder)
                                           to:nil
                                         from:nil
                                     forEvent:nil];

【讨论】:

以上是关于resignFirstResponder 没有按预期工作的主要内容,如果未能解决你的问题,请参考以下文章

resignFirstResponder 没有按预期工作

没有看到 UIScrollView 上的 UITextField 时 resignFirstResponder

resignFirstResponder 没有按预期工作。每次按键时键盘都会弹出,而不是仅返回

resignFirstResponder 不关闭键盘

检查现有的 TextField resignFirstResponder?

UITextField - resignFirstResponder 查询