Hi everyone,
I store a float number in my SQLite (through core data) like this:
unit.conversion = [NSNumber numberWithFloat:0.001];
When I look at the SQLite database the value is 0.0010000000474974513
unit.conversion is an optional float in my datamodel...
What's wrong with that?
Thanks