开发者社区> 问答> 正文

点击TextField怎样隐藏键盘?

  • (BOOL)textFieldShouldBeginEditing:(UITextField *)textField
    {

    NSInteger tag = textField.tag;
    if(tag ==10 || tag ==11 || tag ==12){

    if(keyboardVisible){//判断键盘是否显示

    [textField resignFirstResponder];

    }
    [self moveTo:pickView andX:0 andY:HIGHT-230 andTime:0.3];
    return NO;

    }else{

    return YES;

    }
    

}
当键盘显示时,用[textField resignFirstResponder]为什么不能隐藏键盘?
执行了这句代码,但是键盘不能隐藏......

if(keyboardVisible){//判断键盘是否显示

        [textField resignFirstResponder];

}

展开
收起
a123456678 2016-07-28 11:35:38 1924 0
1 条回答
写回答
取消 提交回答
  • [self.view endEditing:YES];

    2019-07-17 20:01:16
    赞同 展开评论 打赏
问答地址:
问答排行榜
最热
最新

相关电子书

更多
低代码开发师(初级)实战教程 立即下载
冬季实战营第三期:MySQL数据库进阶实战 立即下载
阿里巴巴DevOps 最佳实践手册 立即下载