ios – 如何擦除或清除UITextField

前端之家收集整理的这篇文章主要介绍了ios – 如何擦除或清除UITextField前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何清除ios中的文本字段,
如何在文本框中删除用户首次按键上的所有内容
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string
{



    if([tfieldDOB.text length] == 4)
    {
        tfieldDOB.text=[NSString stringWithFormat:@"%@/",tfieldDOB.text];
    }
    else if([tfieldDOB.text length]==7)
    {
        tfieldDOB.text=[NSString stringWithFormat:@"%@/",tfieldDOB.text];

    }

    return YES;

}

解决方法

在编辑时更改文本字段属性清除按钮模式

或其他选择只需使用您需要添加的单行

yourtextfieldname.text=@"";  //it is used for clear the textfield values

迅速

yourtextfieldname.text=""

或另一种方式

clearField =@"YES";

if([clearField isequaltostring:@"YES"])  //check this line in 
{
    tfieldDOB.text = @"";
    clearField =@"NO";
}
原文链接:https://www.f2er.com/iOS/332765.html

猜你在找的iOS相关文章