美文网首页
iOS - UITextField-不能输入空格

iOS - UITextField-不能输入空格

作者: biubiuboom | 来源:发表于2020-05-13 12:06 被阅读0次
    - (BOOL)textField:(UITextField*)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString*)string
    
    {
    
    NSString*tem = [[stringcomponentsSeparatedByCharactersInSet:[NSCharacterSetwhitespaceCharacterSet]]componentsJoinedByString:@""];
    
    if(![stringisEqualToString:tem]) {
    
    return NO;
    
    }
    
    return YES;
    
    }
    

    相关文章

      网友评论

          本文标题:iOS - UITextField-不能输入空格

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