ios中怎么样点击背景退出键盘

1 //退出键盘 只需一句,药到病除
2 - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{
3     
4     [self.view endEditing:YES];
5 }
原文地址:https://www.cnblogs.com/hkyangvip/p/3562195.html