仅允许UITextField使用字母数字字符

Fla*_*lax 21 uitextfield ios uitextfielddelegate

我如何才允许在iOS中仅输入字母数字字符UITextField

Noa*_*oon 59

将UITextFieldDelegate方法-textField:shouldChangeCharactersInRange:replacementString:与NSCharacterSet一起使用,该NSCharacterSet包含要允许的字符的反转.例如:

// in -init, -initWithNibName:bundle:, or similar
NSCharacterSet *blockedCharacters = [[[NSCharacterSet alphanumericCharacterSet] invertedSet] retain];

- (BOOL)textField:(UITextField *)field shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)characters
{
    return ([characters rangeOfCharacterFromSet:blockedCharacters].location == NSNotFound);
}

// in -dealloc
[blockedCharacters release];
Run Code Online (Sandbox Code Playgroud)

请注意,您需要声明您的类实现协议(即@interface MyClass : SomeSuperclass <UITextFieldDelegate>)并将文本字段设置delegate为您的类的实例.

  • 是的 - 如果一次输入多个字符(例如粘贴文本时),如果替换文本中有**任何**字母数字字符,则检查非反转集将允许更改,即使它们不是**全部**字母数字. (3认同)

cho*_*own 11

我是这样做的:

// Define some constants:
#define ALPHA                   @"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
#define NUMERIC                 @"1234567890"
#define ALPHA_NUMERIC           ALPHA NUMERIC

// Make sure you are the text fields 'delegate', then this will get called before text gets changed.
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string {

    // This will be the character set of characters I do not want in my text field.  Then if the replacement string contains any of the characters, return NO so that the text does not change.
    NSCharacterSet *unacceptedInput = nil;

    // I have 4 types of textFields in my view, each one needs to deny a specific set of characters:
    if (textField == emailField) {
        //  Validating an email address doesnt work 100% yet, but I am working on it....  The rest work great!
        if ([[textField.text componentsSeparatedByString:@"@"] count] > 1) {
            unacceptedInput = [[NSCharacterSet characterSetWithCharactersInString:[ALPHA_NUMERIC stringByAppendingString:@".-"]] invertedSet];
        } else {
            unacceptedInput = [[NSCharacterSet characterSetWithCharactersInString:[ALPHA_NUMERIC stringByAppendingString:@".!#$%&'*+-/=?^_`{|}~@"]] invertedSet];
        }
    } else if (textField == phoneField) {
        unacceptedInput = [[NSCharacterSet characterSetWithCharactersInString:NUMERIC] invertedSet];
    } else if (textField == fNameField || textField == lNameField) {
        unacceptedInput = [[NSCharacterSet characterSetWithCharactersInString:ALPHA] invertedSet];
    } else {
        unacceptedInput = [[NSCharacterSet illegalCharacterSet] invertedSet];
    }

    // If there are any characters that I do not want in the text field, return NO.
    return ([[string componentsSeparatedByCharactersInSet:unacceptedInput] count] <= 1);
}
Run Code Online (Sandbox Code Playgroud)

查看UITextFieldDelegate参考.


Fla*_*lax 11

我找到了一个简单而有效的答案,想要分享:

将您的UITextField连接到事件EditingChanged到以下IBAction

-(IBAction) editingChanged:(UITextField*)sender
{    
    if (sender == yourTextField)
    {
        // allow only alphanumeric chars
        NSString* newStr = [sender.text stringByTrimmingCharactersInSet:[[NSCharacterSet alphanumericCharacterSet] invertedSet]];

        if ([newStr length] < [sender.text length])
        {
            sender.text = newStr;
        }
    }
}
Run Code Online (Sandbox Code Playgroud)


ter*_*dyl 7

Swift 3版

目前接受的答案方法:

func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool {

    // Get invalid characters
    let invalidChars = NSCharacterSet.alphanumerics.inverted

    // Attempt to find the range of invalid characters in the input string. This returns an optional.
    let range = string.rangeOfCharacter(from: invalidChars)

    if range != nil {
        // We have found an invalid character, don't allow the change
        return false
    } else {
        // No invalid character, allow the change
        return true
    }
}
Run Code Online (Sandbox Code Playgroud)

另一种功能相同的方法

func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool {

    // Get invalid characters
    let invalidChars = NSCharacterSet.alphanumerics.inverted

    // Make new string with invalid characters trimmed
    let newString = string.trimmingCharacters(in: invalidChars)

    if newString.characters.count < string.characters.count {
        // If there are less characters than we started with after trimming
        // this means there was an invalid character in the input. 
        // Don't let the change go through
        return false
    } else {
        // Otherwise let the change go through
        return true
    }

}
Run Code Online (Sandbox Code Playgroud)


Au *_*Ris 5

Swift 中的 RegEx 方式:

func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool {
     if string.isEmpty {
         return true
     }
     let alphaNumericRegEx = "[a-zA-Z0-9]"
     let predicate = NSPredicate(format:"SELF MATCHES %@", alphaNumericRegEx)
     return predicate.evaluate(with: string)
}
Run Code Online (Sandbox Code Playgroud)