2

I am using the keyboard type: UIKeyboardTypeDecimalPad for two UITextField objects. When trying to perform an addition, I get different results depending on the current locale:

Case 1: US Format: the decimal point appears as . as expected. If I add 12.3 (text field 1) + 12.3 (text field 2), the answer will be 24.6. That's what I want. But:

Case 2: Egypt Format: the decimal point appears as ,. If I repeat the same calculation the answer will be 24. The decimal portion is ignored. Is there a fix for that?

Note: I used the [textField.text floatValue] method.

Jean-François Corbett
  • 37,420
  • 30
  • 139
  • 188
Abdalrahman Shatou
  • 4,550
  • 6
  • 50
  • 79

2 Answers2

5

Because floatValue does non-localized scanning, it expects a "US format".

You can use an NSScanner object for localized scanning of numeric values from a string.

See: String Programming Guide: Scanners

Note the last paragraph:

Localization

A scanner bases some of its scanning behavior on a locale, which specifies a language and conventions for value representations. NSScanner uses only the locale’s definition for the decimal separator (given by the key named NSDecimalSeparator). You can create a scanner with the user’s locale by using localizedScannerWithString:, or set the locale explicitly using setLocale:. If you use a method that doesn’t specify a locale, the scanner assumes the default locale values.

See also: How to do string conversions in Objective-C?

Example:

NSScanner *scanner = [NSScanner localizedScannerWithString:textField.text];
double mynumber;
if([scanner scanDouble: &mynumber]){
  // do something
};
Community
  • 1
  • 1
magma
  • 8,432
  • 1
  • 35
  • 33
0

You can use:

double number = [[self.myTextField.text stringByReplacingOccurencesOfString:@”,” withString:@”.”] doublevalue];

this is ok for all the languages.

strah
  • 6,702
  • 4
  • 33
  • 45
GiulioM
  • 11
  • 1