I´m trying to limit the user of entering anything else besides numbers in a textfield, and also using NSNumberFormatter currency style, but it simply doesn´t work, and i think it´s just a little detail that i´m missing, this is what i´m using:
NSString *text = [textField.text stringByReplacingCharactersInRange:range withString:string];
text = [text stringByReplacingOccurrencesOfString:@"." withString:@""];
text = [text stringByReplacingOccurrencesOfString:@"," withString:@""];
NSNumberFormatter* formatter = [[NSNumberFormatter alloc] init];
[formatter setNumberStyle:NSNumberFormatterCurrencyStyle];
[formatter setCurrencySymbol:@""];
[formatter setMaximumFractionDigits:2];
[formatter setMinimumFractionDigits:0];
[formatter setUsesGroupingSeparator:YES];
[formatter setCurrencyGroupingSeparator:@"."];
[formatter setCurrencyDecimalSeparator:@","];
[formatter setGroupingSeparator:@","];
NSNumber *num = [NSNumber numberWithDouble:[text doubleValue]];
text = [formatter stringFromNumber:num];
textField.text = text;
return NO;
- The currency style that i´m trying to achieve is: 5,720.00 but and i´m getting this:5.720.000
- Also when the textfield is being edited, it starts like this: 0 and i want 0.00
I know a way of fixing this with the code below, but that conflicts with some other code in another view:
NSString *text = [textField.text stringByReplacingCharactersInRange:range withString:string];
text = [text stringByReplacingOccurrencesOfString:@"." withString:@""];
text = [text stringByReplacingOccurrencesOfString:@"," withString:@""];
text = [text stringByReplacingOccurrencesOfString:currency withString:@""];
NSNumberFormatter *numberFormatter = [[NSNumberFormatter alloc] init];
[numberFormatter setNumberStyle:NSNumberFormatterCurrencyStyle];
[numberFormatter setCurrencySymbol:currency];
NSNumber *num = [NSNumber numberWithDouble:[text doubleValue]*.01];
text = [numberFormatter stringFromNumber:num];
textField.text = text;
return NO;
Using the *.01 works of course, but i want to able able to use only nsnumberformatter.... What am i missing here?
Thanks in advance
