在開發(fā)過程中忱辅,為了實現點擊屏幕其它位置收起鍵盤的目的,我們使用過許多的方法保檐。如果是在UIViewController中收起鍵盤耕蝉,除了通過調用控件的resignFirstResponder
方法外,還有其它的方法夜只。
第一種方法
重載
- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event
方法垒在,然后在此方法中執(zhí)行[self.view endEditing:YES]
。
代碼示例如下:
- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
[self.view endEditing:YES];
}
如果獲取當前UIViewControll比較困難時扔亥,可以采用第二種或者第三種方法场躯。直接執(zhí)行以下兩個方法中的一個即可達到效果。
第二種方法
[[UIApplication sharedApplication] sendAction:@selector(resignFirstResponder) to:nil from:nil forEvent:nil];
第三種方法
[[[UIApplication sharedApplication] keyWindow] endEditing:YES];