首页 > 代码库 > iOS点击任何出回收键盘

iOS点击任何出回收键盘

我这个是在navigationBar上一个搜索框:

搜索框不在View上,不能用self.view只能用window上
/** *  控制器的View被点击了,就会调用 * *  @param touches 对象 *  @param event   事件(封装了触摸的所有事件) */- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{    //点击任何处,回收键盘,搜索框不在View上,不能用self.view只能用window上    [self.view.window endEditing:YES];}

 

iOS点击任何出回收键盘