一种比较简单的点击屏幕空白处退出键盘的方法:
在ViewController中加入如下代码:
1: -(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{
2:
3: [self.view endEditing:YES];
4:
5: }
即可