代码之家  ›  专栏  ›  技术社区  ›  Amarsh

在iphone上隐藏键盘

  •  1
  • Amarsh  · 技术社区  · 14 年前

    我有一个表单,如下所示(见图片)。如果用户点击登录按钮,我希望键盘消失。我该怎么做。

    alt text

    2 回复  |  直到 14 年前
        1
  •  3
  •   samvermette    14 年前

    通常,当用户点击文本域之外的某个地方时,键盘应该自动关闭,但是您也可以使用

    [textField resignFirstResponder]
    
        2
  •  1
  •   iKushal    12 年前
     set delegate for your text field <UITextFieldDelegate>
     and over ride this method
    
    -(BOOL)textFieldShouldReturn:(UITextField *)textField
    {
       [textField resignFirstResponder];
        return YES;
    }