ok... so i have a string that displays a floating point number with 2 decimal places. by default, float displays with a period. however, my app is localized into french (english dev base), and in québec and france, numbers are displayed with a comma, not a period.
how do i display this string float with a comma IF it is currently being viewed in french localization?
Code:
self.myNumberString = [NSString stringWithFormat:@"%.2f", aFloat];
how do i display this string float with a comma IF it is currently being viewed in french localization?