码迷,mamicode.com
首页 > 移动开发 > 详细

iOS 键盘下去的方法

时间:2015-09-08 12:21:30      阅读:403      评论:0      收藏:0      [点我收藏+]

标签:

让键盘下去总的来说就是结束编辑或让键盘失去第一响应,我一般用这3种方法:

第一种:点击屏幕让键盘结束编辑。

-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
    [self.view endEditing:YES];
}

第二种:点击编辑框以外的区域让键盘失去第一响应:

- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
{
    if (![textField isExclusiveTouch])
    {
        [textField resignFirstResponder];
    }
}

第三种:通过textfield的代理方法,实现

UITextFieldDelegate,代码如下:

- (BOOL)textFieldShouldReturn:(UITextField *)_textField{
    
    [textField resignFirstResponder];
    return YES;
    
}

 

iOS 键盘下去的方法

标签:

原文地址:http://www.cnblogs.com/pengoeng/p/4791079.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!