Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm having trouble storing and retrieving a float in NSUserDefauts. I store the value, but when I retrieve it, it returns 0.

here's what I tried and didn't work:

[pref setFloat:3.0f forKey:@"key"];
float value = [pref floatForKey:@"key"]; //value=0

[pref setFloat:3 forKey:@"key"];
float value = [pref floatForKey:@"key"];//value=0

[pref setObject:[NSNumber numberWithFloat:3] forKey:@"key"];
float value = [[pref objectForKey:@"key"]floatValue];//value=0

[pref setObject:[NSNumber numberWithFloat:3.0f] forKey:@"key"];
float value = [[pref objectForKey:@"key"]floatValue];//value=0

What am I doing wrong here? I've tried these 4 pieces of code but they all return zero when retrieving the float from NSUserDefaults.

Any help is appreciated. Thanks!

share|improve this question
pref is almost certainly nil. Show the code where you assign pref. Where is it in relation to the code above? – jrturton Mar 31 '12 at 15:13

6 Answers

up vote 3 down vote accepted

The first example in your code is fine, assuming that this line:

NSUserDefaults *pref = [NSUserDefaults standardUserDefaults];

Appears before it. As I suggested in my comment, the behaviour you are seeing suggests that pref is nil.

share|improve this answer
jrturton, thanks a lot! that was it!! I actually declared pref in my .h file, and synthesized it in my .m file. Can I not do that with NSUserDefault?? – Rafael Moreira Mar 31 '12 at 20:46
Synthesising just creates the accessor methods. You still need to assign a value to the property at some point. – jrturton Mar 31 '12 at 21:24

Save

-(void) saveFloatToUserDefaults:(float)x forKey:(NSString *)key {
    NSUserDefaults * userDefaults = [NSUserDefaults standardUserDefaults];
    [userDefaults setFloat:x forKey:key];
    [userDefaults synchronize];
}

Load

-(float) loadFloatFromUserDefaultsForKey:(NSString *)key {
    NSUserDefaults * userDefaults = [NSUserDefaults standardUserDefaults];
    return [userDefaults floatForKey:key];
}

How-To

[self saveFloatToUserDefaults:5.241 forKey:@"myFloat"];
float x = [self loadFloatFromUserDefaultsForKey:@"myFloat"];
share|improve this answer
[[NSUserDefaults standardUserDefaults]setObject:[NSNumber numberWithFloat:3] forKey:@"key"];
share|improve this answer
It is not necessary to convert the float to an NSNumber for NSUserDefaults. – Zaph Mar 31 '12 at 15:56

NSUserDefaults special cases floats as well as a few other native "C" types.

[[NSUserDefaults standardUserDefaults] setFloat:3 forKey:@"key"];

float value = [[NSUserDefaults standardUserDefaults] floatForKey:@"key"];
NSLog(@"value: %.0f", value);

NSLog output:
value: 3

share|improve this answer
NSUserDefaults *pref = [NSUserDefaults standardUserDefaults];
if (pref) {
   [[NSUserDefaults standardUserDefaults] setFloat:3 forKey:@"key"];

   //for accessing
   float value = [pref floatForKey:@"key"]; //if key does not exist, value will be zero
}
share|improve this answer
Wondering why the check for [NSUserDefaults standardUserDefaults] since if that returns nil the system is hosed and a wonder it hasn't crashed yet. :-) It is similar to checking if [NSData data] returns nil which we reasonably don't check. – Zaph Mar 31 '12 at 16:59

You can store float values as string only, while retrieving you can access as:

[pref setValue:@"3.0" forKey:@"key"];
float value = [[pref objectForKey:@"key"]floatValue];

I hope it works.

share|improve this answer
2  
This is wrong, you can directly use setFloat: as in the question. – jrturton Mar 31 '12 at 15:46
hey, its not wrong , its just bad practice . because i have checked with it while working on some projects . please do tell if i am completely wrong – Pavan Saberjack Mar 31 '12 at 20:54
1  
"you can store float values as string only" - that is the wrong part. You can of course store a number as a string, and convert it as in your answer, but it is not necessary. – jrturton Mar 31 '12 at 21:22
using strings to store numbers is horrible and lazy. we can do it, but never let people know this we don't want to encourage them... :) – jheriko Nov 9 '12 at 10:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.