在UIViewController中收起键盘,除了调用相应控件的resignFirstResponder方法外,还有另外三种方法:
- 重载UIViewController中的touchesBegin方法,然后在里面执行[self.view endEditing:YES];,这样单机UIViewController的任意地方,就可以收起键盘。
- 直接执行[[UIApplication sharedApplication] sendAction:@selector(resignFirstResponder) to:nil from:nil forEvent:nil];,用于在获得当前UIViewController比较困难的情况.
- 直接执行[[[UIApplication sharedApplication] keyWindow] endEditing:YES];