UITextField - Allow only numbers and punctuation input/keypad

前端 未结 4 820
不思量自难忘°
不思量自难忘° 2020-12-30 10:16

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

4条回答
  •  执念已碎
    2020-12-30 10:42

    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;
    }
    

提交回复
热议问题