美文网首页
收起键盘

收起键盘

作者: 等待_人 | 来源:发表于2018-04-02 15:16 被阅读0次

    在UIViewcontroller中收起键盘,除了调用相应控件的resignFirstResponder方法外,还有另外三种方法:

    1、重载UIViewcontroller中的touchesBegin方法,然后在里面执行 [self.view endEditing:YES];,这样单机UIViewcontroller的任意地方,就可以收起键盘。

    2、直接执行 [[UIApplication sharedApplication] sendAction:@selector(resignFirstResponder) to:nil forEvent:Nil];用于在获取当前UIviewcontroller比较困难的时候用。

    3、直接执行[[UIApplication sharedApplication] keyWindow] endEditing:YES].

    相关文章

      网友评论

          本文标题:收起键盘

          本文链接:https://www.haomeiwen.com/subject/mfhxhftx.html