本文主要是介绍如何获取相应tableview中的touchesBegan事件,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
项目中使用了UITableViewController,里面有用到UITextView需要点击键盘外的地方来隐藏我的键盘
自定义一个uitableview,继承UITableView。重写touch事件
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
[super touchesBegan:touches withEvent:event];
[[UIApplication sharedApplication].keyWindow endEditing:YES];
}
这篇关于如何获取相应tableview中的touchesBegan事件的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!