DevC
DevC

Reputation: 7022

UITextField - Allow only numbers and punctuation input/keypad

I have tried the code below but that only allows for numbers on the keypad to be inputted. My app requires the keypad to use a period/full stop (for money transactions). The code I tried is:

- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string {

   NSCharacterSet *nonNumberSet = [[NSCharacterSet decimalDigitCharacterSet] invertedSet];

     if ([string rangeOfCharacterFromSet:nonNumberSet].location != NSNotFound)
      {
         return NO;
    }
   return YES;

}

Thanks for any help.

Upvotes: 9

Views: 14901

Answers (4)

Kalpesh
Kalpesh

Reputation: 5334

Try this

Make a macro

#define ACCEPTABLE_CHARACTERS @"0123456789."

And use it

- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string  {

    if (textField==textFieldAmount)
    {
        NSCharacterSet *cs = [[NSCharacterSet characterSetWithCharactersInString:ACCEPTABLE_CHARACTERS] invertedSet];

        NSString *filtered = [[string componentsSeparatedByCharactersInSet:cs] componentsJoinedByString:@""];

        return [string isEqualToString:filtered];
    }
    return YES;
}

Upvotes: 44

Charlton P
Charlton P

Reputation: 2274

In Swift 3:

func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool {
    let allowedCharacters = "0123456789!@#$%^&*()_+~:{}|\"?><\\`,./;'[]=-"
    return allowedCharacters.contains(string) || range.length == 1
}

Upvotes: 3

Laszlo
Laszlo

Reputation: 2778

How about a custom character set? Something like this:

NSCharacterSet *testChars = [NSCharacterSet characterSetWithCharactersInString:@"0123456789+*#-() "];

Because setting the keyboard type is pretty useless on iPad...

Upvotes: 2

LifeIsHealthy
LifeIsHealthy

Reputation: 347

Just use

[textField setKeyboardType:UIKeyboardTypeNumbersAndPunctuation];

after creating your textfield.

Upvotes: 2

Related Questions