美文网首页iOS DeveloperiOS学习笔记
UITextField 禁止键盘弹出

UITextField 禁止键盘弹出

作者: 旺仔爸 | 来源:发表于2015-12-04 16:50 被阅读1151次

    今天做一个弹窗效果需要禁止金盘弹出

    #pragma mark - textField detegate

    - (BOOL)textFieldShouldBeginEditing:(UITextField *)textField{

    [textField resignFirstResponder];

    return NO;

    }

    相关文章

      网友评论

        本文标题:UITextField 禁止键盘弹出

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