在 UITableViewController 中使用自定义单元格。在自定义单元格中有一个 TextField。当用户触摸键盘外部时需要关闭键盘。在自定义单元格的 .m 文件中添加了此代码;
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{
[holeScoreTextField resignFirstResponder];
}
当用户触摸另一个单元格或同一单元格内时,这确实有效。问题是 UITableViewController 中有一个包含一些信息的视图。上面的代码不适用于该视图。