美文网首页
iOS 收起键盘

iOS 收起键盘

作者: CoderSahara | 来源:发表于2017-10-27 14:49 被阅读4次

    //方法1;

    [[[UIApplication sharedApplication] keyWindow] endEditing:YES];

    //方法2;
    [self.view endEditing:YES];

    //方法3;
    -(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
    {
    [telTextField resignFirstResponder];
    }

    //方法4;
    [self.myTF resignFirstResponder];

    相关文章

      网友评论

          本文标题:iOS 收起键盘

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