1

I have a UITextField set up to show a number pad. How do I require the user to enter exactly 5 digits?

I poked around and saw I should use shouldChangeCharactersInRange but I'm not quite understanding how to implement that.

rmaddy
  • 314,917
  • 42
  • 532
  • 579
May Yang
  • 523
  • 1
  • 5
  • 18

3 Answers3

4

I'd just use this when the user leaves the textfield/validates with a button

if ([myTextField.text length] != 5){

//Show alert or some other warning, like a red text

}else{
 //Authorized text, proceed with whatever you are doing
}

Now if you want to count the chars WHILE the user is typing, you might use in viewDidLoad

[myTextfield addTarget: self action@selector(textfieldDidChange:) forControlEvents:UIControlEventsEditingChanged]

-(void)textFieldDidChange:(UITextField*)theTextField{
 //This happens every time the textfield changes
}

Please make sure to ask questions in the comments if you need more help :)

Gil Sand
  • 5,802
  • 5
  • 36
  • 78
2

Make yourself a delegate of UITextFieldDelegate and implement the following:

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

        NSUInteger oldLength = [textField.text length];
        NSUInteger replacementLength = [string length];
        NSUInteger rangeLength = range.length;

        NSUInteger newLength = oldLength - rangeLength + replacementLength;

        BOOL returnKey = [string rangeOfString: @"\n"].location != NSNotFound;

        //desired length less than or equal to 5
        return newLength <= 5 || returnKey;
    }
Razvan
  • 4,122
  • 2
  • 26
  • 44
1
- (BOOL) textField: (UITextField *)textField shouldChangeCharactersInRange: (NSRange)range replacementString: (NSString *)string {

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

    return [self validateText: newText]; // Return YES if newText is acceptable 

}
holex
  • 23,961
  • 7
  • 62
  • 76
Marek R
  • 32,568
  • 6
  • 55
  • 140