Hi,
I have a table view which uses an NSNumberFormatter for one of its table columns. The formatting works great where it displays numbers like this: 1,333.23
However, if the user double clicks the cell in the table view and enters a large number say, 199,999.01 the penny is dropped so that it then looks like 199,999.00
I tried changing the formatters rounding behavior, but still no luck.
I have a model class which takes and returns a float for receiving edited values and returning values to the table. Do I need to change my float variable in my model class to a double?
Thanks in advance.