美文网首页
iOS收起键盘的n种方法

iOS收起键盘的n种方法

作者: 福利加班死 | 来源:发表于2017-12-18 09:05 被阅读0次

    1 普通的视图对象使用 resignFirstResponder 方法即可

    2 在viewController中使用

    [self.view endEditing:YES];
    

    3 直接执行

     [[UIApplication sharedApplication]sendAction:@selector(resignFirstResponder) to:nil from:nil forEvent:nil];
    //或者
      [[[UIApplication sharedApplication] keyWindow] endEditing:YES];
    

    相关文章

      网友评论

          本文标题:iOS收起键盘的n种方法

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