i like to limit three UItextfield to only 1 number, i uses this code but it doenst work.
the code:
- (BOOL)textField:(UITextField *)numeroIngresa1
shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string
{
if (range.location >= 1)
return NO; // return NO to not change text
return YES;
}