标签:
- (IBAction)TextFiledDidEndOnExit:(id)sender { [sender resignFirstResponder]; }
当然我们的一个界面有时会有很多 键盘响应的控件。我们希望只需点击控件所在的背景(view或编辑区以外)就可以隐藏键盘。最常用的方法是:首先,我们先将view 的Custom Class设置为UIControl(在第三个检查器里).然后,给View关联一个 touch down(只有view 的自定义类属于 UIControl时才有该方法)的方法 - (IBAction)View_TouchDown:(id)sender;。最后,在方法里添加个个控件放弃第一响应者的身份的方法。[self.textFiled resignFirstResponder];[self.textView resignFirstResponder];
- (IBAction)View_TouchDown:(id)sender { [self.TextFiled resignFirstResponder]; [self.TextView resignFirstResponder]; }
当然,也可以不改变自定义类为UIControl,还是使用Custom 为 UIView,请使用以下方法。
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event { if (![self.TextView isExclusiveTouch]) { [self.TextView resignFirstResponder]; } }
还有一种方法,就是用通知的方法。稍微麻烦点。
标签:
原文地址:http://www.cnblogs.com/wjw-blog/p/4770683.html