I'm using:
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:
(NSRange)range replacementString:(NSString *)string{ }
I want this to only apply to the phone number field, whose tag is 1, so in this function I put
if(textField.tag != 1) { return NO; }
After I did this, I cannot even input anything into the other text fields. How can I fix this?