An Objective-C class for formatting and parsing numerical values. Instances of NSNumberFormatter format the textual representation of cells that contain NSNumber objects and convert textual representations of numeric values into NSNumber objects.

learn more… | top users | synonyms

0
votes
0answers
4 views

Setting NotANumberSymbol to an empty string?

why NSNumberFormatter's method setNotANumberSymbol:(NSString *)string ignores the empty string as a parameter (@"")? It even ignores the string, if it contains only spaces and zeros (@" 0 0 0 ")? Is ...
-2
votes
4answers
63 views

Is there any easy way to round a float with one digit number in objective c?

Yes. You are right. Of Course this is a duplicate question. Before flag my question, please continue reading below. I want to round a float value, which is 56.6748939 to 56.7 56.45678 to 56.5 ...
1
vote
1answer
51 views

Integer value with comma separated not getting saved to core data in iOS

In my iPhone app am saving data to core data. I have to save one comma separated integer value. NSNumberFormatter * formatter = [NSNumberFormatter new]; [formatter ...
1
vote
1answer
69 views

NSNumberFormatter with comma decimal separator

I tried to convert an NSString like "12000.54" into "12.000,54". I wrote an NSNumberFormatter instance. NSNumberFormatter *formatter = [[[NSNumberFormatter alloc] init] autorelease]; [formatter ...
0
votes
1answer
53 views

NSNumber stringValue different from NSNumber value

I'm having problems with converting NSNumber to string and string to NSNumber. Here's a sample problem: NSString *stringValue = @"9.2"; NSNumberFormatter *formatter = [[NSNumberFormatter alloc] ...
0
votes
1answer
53 views

Format 9999999 into 9,999,999 (comma after every third digit) using NSNumberFormatter

Similar to comma separated thousand NSString stringWithFormat but with a specific use case. How do I insert a comma (,) after every third digit? Some cases: 9999999 → 9,999,999 1234 → 1,234 ...
0
votes
1answer
34 views

Displaying floating point without integer part when number between 0 and 1

I want to display floating point number in iOS like .23 I have seen questions where people do not want fractional part. But I didn't find answer for this. Can I do it with NSNumberFormatter? I tried ...
0
votes
4answers
136 views

Stop Float value rounding off in objective c

I have to prevent the value from rounding off after the decimal. Here is the code I use : NSNumberFormatter* nf = [[[NSNumberFormatter alloc] init] autorelease]; nf.positiveFormat = @"0.###"; ...
0
votes
0answers
17 views

OSX/Coca: How to avoid two alerts sheets when bound NSTextField with NSNumberFormatter is within tabbed view

This is a problem I assume I could avoid by using IBOutlets rather than bindings, but I'd rather use bindings. The problem: I create a tabbed view. Within one tab, I place an NSTextField. I drop an ...
0
votes
0answers
78 views

Currency formatting in a UITextField

I was wondering if anyone is able to clear this up for me. I'm creating a test app with two buttons, adding 10% or 20% to a value input by the user. It was working fine until I tried to format it to ...
0
votes
1answer
42 views

Trim NSNumber to 8 decimal places

i have an ios app that shows the latitude of your current location. i want to limit the number of digits in the latitude to 8 decimal points. I used NSNumberFormatter but the code does'nt work and i ...
0
votes
0answers
40 views

NSNumberCurrencyFormatter negative format

I have a problem where if you change the currency on my app to something that differs from the locale, my app displays the negative value incorrectly e.g. App currency is set to £, locale is set to ...
0
votes
1answer
101 views

NSNumberFormatter not allowing more than 4 digits in UITextField

I'm trying to build a basic calculator and I'm having trouble formatting the number on the display during imput. I'm using NSNumberFormatter to put a comma after every 3 digits so that "99999" can ...
0
votes
1answer
42 views

How do I get Scientific Notation in a text field?

I'm trying to get this text field in my app to display in scientific notation after 8 characters are entered in (sort of like the built-in Calculator App). I've got everything working right, except ...
1
vote
0answers
38 views

NSNumberFormatter Currency displayed differently in iOS 5.1 and 6.x

I'm currently developing an app that has to display currencies dependant on a certain culture, my code is: NSLocale* myLocale= [[NSLocale alloc] initWithLocaleIdentifier:myCurrency]; ...
-4
votes
1answer
86 views

How to display Comma separated and Fractional values in UITextfiled? [closed]

I need to format the text when the user enters text in the below mentioned desired format. 1)When the user enters 0 as the first character the text field should display the text as 0.00 2)When the ...
3
votes
2answers
123 views

Check if an NSString contains a valid number but localized

How to check if a string contains a valid number considering localized number formats. This question is not primary about converting a number. I can do that with NSNumberFormatter. And if I can't ...
0
votes
1answer
47 views

Setting Currency in iPhone App

I have a setting within my App to change currency. I have since realised that this will cause problems due to different keypad locales where you could possible have a mismatch in the currency against ...
0
votes
2answers
76 views

NSNumberFormatter removing spaces before currency

I am using NSNumberFormatter to format my numbers to strings. I have a device with Hebrew (israel) region format (settings->General->International->Region Format). When I try to format the number 100 ...
0
votes
4answers
101 views

How to avoid rounding off in NSNumberFormatter

I am trying to have a number string with maximum 2 decimals precision, while rest decimals just trimmed off instead of rounding them up. For example: I have: 123456.9964 I want: 123456.99 -> Just ...
0
votes
2answers
137 views

Having trouble using NSNumberFormatter for currency conversion in iOS

I have a UITextField that receives numeric input from the user in my application. The values from this textfield then get converted into currency format using NSNumberFormatter within my ...
0
votes
3answers
78 views

NsNumberFormatter not giving correct result

I am facing an issue but couldn't seem to find a solution.I have a textfield where user is entering numbers.The issue is that when the user enters last digit as zero after decimal place,it is not ...
0
votes
1answer
108 views

Trying to format a UITextField to behave like a currency calculator for only numeric input in iOS

I have a UITextField in my application that is supposed to receive only numeric input from the user. This numeric input is supposed to represent currency (i.e. have only two decimal places), have the ...
1
vote
1answer
51 views

NSNumberFormatter wrong result

NSNumberFormatter *numberFormatter = [[NSNumberFormatter alloc] init]; [numberFormatter setFormatterBehavior:NSNumberFormatterBehavior10_4]; [numberFormatter ...
0
votes
2answers
54 views

Convert array of NSStrings to array of formatted NSNumbers

I have an array of strings called valuesArray containing values like this: 2913451.0938 I am trying to format those numbers so that I can display them like this: 2,913,451.09 Using the following ...
0
votes
2answers
83 views

NSNumberFormatter conversion remove the decimal for small values

Our quality-assurance team detect a defect. When they write 0.095 or 0,095 in a currency field, the NSNumberFormatter converts the content to 95. This is the code we're using: NSNumberFormatter ...
0
votes
2answers
97 views

crash when using NSNumberFormatter to convert NSString to NSNumber

I have a simple value in an NSSTRING that I want to convert to an NSNumber. I do this all the time in my code and for some reason, this time it is not working. Do you see anything wrong with this? ...
0
votes
3answers
62 views

Format values from a NSArray

I have a NSArray containing several strings that look like this: "291839.0930820" I would like to format those values in the array so that they show up in my detailTextLabel of a UITableView with ...
0
votes
0answers
27 views

limiting uitextfield entry with localisation

using the code below i am limiting the numbers that can be used in a uitextfield, however this code fails when the localisation changes and "," becomes the decimal separator what is the correct ...
2
votes
1answer
80 views

NSNumberFormatter different on device and simulator

I have a UITextField, using this code, print the value on the label at the bottom and formatting it. NSNumberFormatter *formatter = [[NSNumberFormatter alloc] init]; [formatter ...
0
votes
3answers
73 views

Issues using NSNumberFormatter?

I'm trying to make a label to show the temperature, with a maximum of 3 digits for temperatures over a 100, but I don't want any decimals... NSString *longtempstring = [tmp description]; ...
0
votes
1answer
57 views

iOS CorePlot numeric formatting of y-axis

I'm working with Core Plot 1.1 to draw a simple scatter plot in iOS6. I am using the following code to properly format my y-axis which then dynamically scales to the plot data. CPTXYAxis *y = ...
0
votes
1answer
166 views

How to limit NSNumberFormatter currency style with stringByReplacingCharactersInRange

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 ...
8
votes
3answers
192 views

How do I set NSNumberFormatter to display numbers using “万” (Japanese/Chinese 10,000 marker)?

My iOS app displays different currencies (USD, JPY, AUD, EUR) in different localizations (en_US, en_AU, ja_JP, etc). For Japanese region/language (both are set on my device), if I have: ...
0
votes
0answers
66 views

How to limit NSNumberFormatterCurrencyStyle

I have this in my code: NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; NSString *currency = [defaults objectForKey:@"currencySymbol"]; NSString *text = [textField.text ...
0
votes
2answers
143 views

NSNumberFormatter not displaying rupee symbol only on ipad device

I am using an NSNumberFormatter with NSNumberFormatterCurrencyStyle to display in app purchas prices in my universal iOS app. My location is India, and the formatter correctly displays the indian ...
0
votes
1answer
44 views

NSFormatter losing percision?

I realize there have been other questions like this, but my problem does not seem to relate accurately. Here's the deal. I have an app, that does a calculation. I am using floats for this. All floats ...
5
votes
3answers
139 views

How do I force a sign-character on the output of an NSNumberFormatter

I want to use a number formatter to generate my output, so the number is automatically formatted for the user's locale, but I want it to work like "%+.1f" does in printf(), that is always have a sign ...
0
votes
0answers
27 views

Split currency symbol from the number inside the texfield

I´m having a problem related to the results in my textfields.What i want is a simple sum, which works if i don´t put the currency symbol inside the textfield(of course!!), for this i have: ...
3
votes
2answers
252 views

iPhone: How to get number from string with currency symbol in Objective-C

I am trying to get number(float value) from string with currency symbol. eg. from "¥1,234" to 1234 from "AU$3,456" to 3456 from "56.78€" to 56.78 I tried the following code but I got 0 as a ...
0
votes
1answer
90 views

NSNumberFormatter returns nil on device, not on simulator

I use a NSNumberFormatter to convert a user input to a NSNumber (a decimal number), I use ARC. NSNumberFormatter *f = [[NSNumberFormatter alloc] init]; [f ...
1
vote
0answers
59 views

NSNumberFormatter rejecting all changes from user: “the value '3' is invalid”

I am using an NSNumberFormatter, but it doesn't quite work like I expected it. Everything I type in that field gets reject with the message "the value '[value]' is invalid". It has the following ...
1
vote
2answers
191 views

NSNumberFormatter with significant digits formats 0.0 incorrectly

I've got an NSNumberFormatter set up to format using significant digits, so it should only show as many decimal digits as are necessary to correctly display the value. When it is used to format 7.0 ...
5
votes
1answer
209 views

Localizing Numbers in iOS

Simply, I have a positive integer [9, 393, 3, 993], and I would like to localize it to a certain language [٩, ٣٩٣ ,٣ ,٩٣٩]. If I use NSNumberFormatter, it will localize the number according to the ...
0
votes
2answers
81 views

Error printing NSCFNumber cast as NSNumber using NSNumberFormatter and RestKit

I am trying to print/access my (double) value from a JSON call and get: [Event latitude]: unrecognized selector sent to instance 0x8d09970 When accessing a string value from the same object, it ...
1
vote
2answers
157 views

Shortening currency numbers using abbreviations while keeping currency format

I would like to shorten currency numbers by using "K" to represent thousands, "M" to represent millions and so forth. Since the numbers represent currency value, I am also using NSNumberFormatter to ...
1
vote
4answers
165 views

How to format int to NSString with displaying the + sign for positive numbers in iOS

AFAIK its impossible using just [NSString stringWithFormat:@"%d"] since there is no specifiers for explicit displaying the + displaying, at least i didn't find it at Apple Developer String Format ...
1
vote
1answer
100 views

Check if NSNumber has trailing .00 digits or not

I have a method that creates a money style string from an NSNumber. + (NSString *)formatShortPayment: (NSNumber *)payment { if (![payment isEqual: [NSNull null]]) { // Set locale to GB ...
0
votes
2answers
367 views

How can I force NSTextField to only allow numbers?

In Interface Builder I’ve created a textfield and stuck an NSNumberFormatter into the cell. However, the user can still type text into the textfield. Is there any way to restrict the input to ...
0
votes
1answer
106 views

Convert currency string into float

My goal is simple, I have a textfield storing a localized currency value ($1,000.00 for instance) and I need to get that value back from the textfield as a float to perform some test on the textfield. ...

1 2 3 4 5