Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In my application i need to allow users input only numbers. How can i allow UITextField to receive only numbers from user?

share|improve this question

7 Answers

up vote 16 down vote accepted

The characters in this examples are allowed, so if you dont want the user to use a character, exclude it from myCharSet.

- (BOOL)textField:(UITextField *)theTextField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string 
{
    NSCharacterSet *myCharSet = [NSCharacterSet characterSetWithCharactersInString:@"0123456789"];
    for (int i = 0; i < [string length]; i++) {
        unichar c = [string characterAtIndex:i];
        if (![myCharSet characterIsMember:c]) {
            return NO;
        }
    }

    return YES;
} 
share|improve this answer
4  
that method will always return NO, should be a YES at the end. and of course change the if (![myCharSet characterIsMember:c]) {.. to if ([myCharSet characterIsMember:c]) { – Erik Jan 19 '11 at 17:47
Yes it is appropriate solution, thank you, guys! – Alexander Tkachenko Jan 20 '11 at 11:24

How are you defining your UITextField? Without more details, sounds like the answer to your question is simply to show the Number pad. In IB, you could set the Text Input Traits setting Keyboard to "Number Pad". In code, you could do:

UITextField *f = [[UITextField alloc] init];
[f setKeyboardType:UIKeyboardTypeNumberPad];

This will only give the users the option to input numbers to begin with.

See the doc on UITextInputTraits.

share|improve this answer
Thank you, Eric, it is usefull, but user is able to change keyboard and type characters in the textfield. i want to disable all posible ways of input characters in the textfield. – Alexander Tkachenko Jan 20 '11 at 11:24
1  
This is not a very robust solution, the user can paste in other characters or use an external keyboard. – Eric Apr 11 '12 at 0:05

I prefer the following solution that actually prevents any any input except from numbers and backspace. Backspace for some reason is represented by an empty string and could not be used unless empty string returns YES. I also popup an alert view when the user enters a character other that numbers.

- (BOOL)textField:(UITextField *)theTextField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string 
{
    if (string.length == 0) {
        return YES;
    }
    NSCharacterSet *myCharSet = [NSCharacterSet characterSetWithCharactersInString:@"0123456789"];
    for (int i = 0; i < [string length]; i++) {
        unichar c = [string characterAtIndex:i];
        if ([myCharSet characterIsMember:c]) {
            return YES;
        }
    }
    UIAlertView *av = [[UIAlertView alloc] initWithTitle:@"Invalid Input" message:@"Only numbers are allowed for participant number." delegate:self cancelButtonTitle:@"Dismiss" otherButtonTitles:nil];
    [av show];
    return NO;
}
share|improve this answer
Very nice solution. Prevents copy/pasting of letters as well. – jhilgert00 Apr 20 '12 at 20:00

One thing you can do is to show the numbers key pad and beside text field or some where else add a dynamic button to hide the keyboard.

share|improve this answer

you guys might flame.. but this worked for me.. only numbers (including negatives), and backspace.

NSCharacterSet *validCharSet;

if (range.location == 0) 
    validCharSet = [NSCharacterSet characterSetWithCharactersInString:@"0123456789-."];
else
    validCharSet = [NSCharacterSet characterSetWithCharactersInString:@"0123456789."];

if ([[string stringByTrimmingCharactersInSet:validCharSet] length] > 0 ) return NO;  //not allowable char


NSNumberFormatter *numberFormatter = [[NSNumberFormatter alloc] init];
[numberFormatter setNumberStyle:NSNumberFormatterDecimalStyle];

NSNumber* candidateNumber;

NSString* candidateString = [textField.text stringByReplacingCharactersInRange:range withString:string];

range = NSMakeRange(0, [candidateString length]);

[numberFormatter getObjectValue:&candidateNumber forString:candidateString range:&range error:nil];

if  (candidateNumber == nil ) {

    if  (candidateString.length <= 1) 
        return YES;
    else
        return NO;
}

return YES;
share|improve this answer

Here is my solution applying algebra of sets with the method isSupersetOfSet: This also doesn't allow pasting text with invalid characters:

- (BOOL)textField:(UITextField *)theTextField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string
{
    if (string.length == 0 || [_numericCharSet isSupersetOfSet:[NSCharacterSet characterSetWithCharactersInString:string]]) {
        return YES;
    }
    else {
        UIAlertView *av = [[UIAlertView alloc] initWithTitle:@"Invalid Input"
                                                     message:@"Only numeric input allowed."
                                                    delegate:self
                                           cancelButtonTitle:@"Close"
                                           otherButtonTitles:nil];
        [av show];
        return NO;
    }
}

Note: according to Apple Developer Library, It's preferable cache the static NSCharacterSet than to create it again and again (here _numericCharSet).

However I prefer to let the user to input any character and validate the value in the method textFieldShouldEndEditing: called when the textField tries to resign first responder. In this manner the user can paste any text (maybe composed with a mix of letters and numbers) and tidy up it in my textFields. The users do not like to see limited their actions.

share|improve this answer
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string
{
    char *x = (char*)[string UTF8String];
    //NSLog(@"char index is %i",x[0]);
    if([string isEqualToString:@"-"] || [string isEqualToString:@"("] || [string isEqualToString:@")"] || [string isEqualToString:@"0"] || [string isEqualToString:@"1"] ||  [string isEqualToString:@"2"] ||  [string isEqualToString:@"3"] ||  [string isEqualToString:@"4"] ||  [string isEqualToString:@"5"] ||  [string isEqualToString:@"6"] ||  [string isEqualToString:@"7"] ||  [string isEqualToString:@"8"] ||  [string isEqualToString:@"9"] || x[0]==0 || [string isEqualToString:@" "]) {

    NSUInteger newLength = [textField.text length] + [string length] - range.length;
    return (newLength > 14) ? NO : YES;
} else {
    return NO;
}
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.