OC中 ,在点击tableview空白处收起键盘方法
时间: 2024-02-09 11:12:19 浏览: 96
可以通过以下代码在点击 UITableView 空白处时收起键盘:
1. 在 viewDidLoad 方法中添加手势识别器:
```
UITapGestureRecognizer *tapGesture = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(hideKeyboard)];
[self.tableView addGestureRecognizer:tapGesture];
```
2. 实现 hideKeyboard 方法:
```
- (void)hideKeyboard {
[self.view endEditing:YES];
}
```
这样,当用户点击 UITableView 的空白处时,就会触发 hideKeyboard 方法,从而收起键盘。
阅读全文