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 saving the logged in Facebook username to the nsuserdefaults preferences using the code below (from the AppDelegate file). The code retrieves the username and outputs it to the console just fine. When I try to do the same thing in another view controller the NSLog output returns (null). What am I missing? thanks for any help.

 - (void)request:(FBRequest *)request didLoad:(id)result {
    if ([result isKindOfClass:[NSDictionary class]]) {

        NSDictionary* hash = result;

        NSString *username = (NSString*)[hash valueForKey:@"name"];

        [[NSUserDefaults standardUserDefaults] setObject:username forKey:@"Username"];

        NSLog(@"%@", username);

        NSUserDefaults * standardUserDefaults = [NSUserDefaults standardUserDefaults];

        NSString *user = [standardUserDefaults stringForKey:@"Username"];

        NSLog(@"username from user defs %@",user);

    }

};

here's the code from the other view controller that isn't working:

NSUserDefaults * standardUserDefaults = [NSUserDefaults standardUserDefaults];

NSString *user = [standardUserDefaults stringForKey:@"Username"];

NSLog(@"username from user defs %@",user);

userNameLbl.text = user;

here's the log output:

username from user defs app delegate my Facebook name 2012-03-30 13:29:20.564 project V2[63339:15803] (null) 2012-03-30 13:29:20.565 project V2[63339:15803] username from user defs app delegate (null) 2012-03-30 13:29:28.620 project V2[63339:15803] username from user defs (null)

share|improve this question
I added #import "AppDelegate.h" to the view controller and all is fine. – hanumanDev Mar 30 '12 at 12:27
please see my edit – the march of the black queen Mar 30 '12 at 12:43

2 Answers

up vote 2 down vote accepted
NSUserDefaults * standardUserDefaults = [NSUserDefaults standardUserDefaults];

NSString *user = [[NSUserDefaults standardUserDefaults] stringForKey:@"Username"];

NSLog(@"username from user defs %@",user);

userNameLbl.text = user;

Try this(i changed just one line; NSString *user = [[NSUserDefaults standardUserDefaults] stringForKey:@"Username"];)

EDIT This is how i save things to NSUserDefaults;

NSString *theKeyIWantToSave;
NSUSerDefaults *defaults=[NSUserDefaults standardUserDefaults];
[defaults setObject:theKeyIWantToSave forKey:@"SomeKey"];

And whenever/whereever i want to retrieve it

NSString *key=[[NSUserDefaults standardUserDefaults] objectForKey:@"SomeKey"];
share|improve this answer
I get the same thing - (null), however this time also a warning that unused variable standardUserDefaults – hanumanDev Mar 30 '12 at 12:21
can you try objectForKey: instead of stringForKey: ? – the march of the black queen Mar 30 '12 at 12:26
it musn't be becasues of importing, NSUserDefaults is shared amongs all the project bundle. Can you please accept the answer if it was useful? – the march of the black queen Mar 30 '12 at 12:27
my mistake with the import. it's still unresolved. objectForKey also didn't do anything. I must be missing something... – hanumanDev Mar 30 '12 at 12:30
I've added some log output to my original post above. It looks like it retrieves the username and then sets it to null for some reason. any idea why that might occur? – hanumanDev Mar 30 '12 at 12:38

Try:

[[NSUserDefaults standardUserDefaults] setValue:newStr forKey:@"Username"];

for setting and:

[[NSUserDefaults standardUserDefaults] valueForKey:@"Username"];

for getting it. No imports, nothing!

share|improve this answer
I was over writing it by setting the NSString *user = [standardUserDefaults objectForKey:@"Username"]; twice. doh! – hanumanDev Mar 30 '12 at 12:43

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.