So, I have the delegate method
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string {
running to check if a textfield
has a minimum of 1 character in it.
Well, if the number of characters exceeds 20 or so, when the user holds down the delete button for a second or two it deletes the entire word, jumping over the delegate
check and deleting all the way down to 0 characters.
Does anyone know how to turn this 'fast delete' off?
Can it even be done, or is there a decent work-around I am not seeing?
I should also point out this is a single word that will be put in this textfield by the user.