iOS ViewController点击空白处收起键盘
Posted itdali
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS ViewController点击空白处收起键盘相关的知识,希望对你有一定的参考价值。
点击ViewController空白处时收起键盘,可以通过系统的touchesBegan方法实现,具体如下:
Objective-C 版
- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event
[self.view endEditing:YES];
Swift 版
// 收起键盘
override func touchesBegan(touches: Set<UITouch>, withEvent event: UIEvent?)
self.view.endEditing(true)
以上是关于iOS ViewController点击空白处收起键盘的主要内容,如果未能解决你的问题,请参考以下文章
ios 最新系统bug与解决——弹出键盘再收起时,原虚拟键盘位点击事件无效