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 want to save my user details in nsuserdefaults in single key. example i have "getuid()" this in my key.in same key i have to store all my documents like dob,username,password etc...i have done this for android like this

SharedPreferences.Editor prefsEditor = personalPrefs.edit();

prefsEditor.putString(getUid() + "Name", getName());
prefsEditor.putString(getUid() + "DateOfBirth", getDob());
prefsEditor.putString(getUid() + "Gender", getGender());

like wise i have tried for iphone.

-(NSString *)getUid{
    return Userid;
}
-(void)setUid:(NSString*)uid{
    Userid = uid;
}
-(NSString *)getPass{
    return Password;
}
-(void)setPass:(NSString *)pass{
    Password = pass;
}
-(NSString *)getName{
    return Name;
}


- (IBAction)helloWorld {
     NSString *raj =@"main";
     NSString *emailString = username.text;
     emailString = Name;
     raj =Userid;
    NSUserDefaults *prefs = [NSUserDefaults standardUserDefaults];
    [prefs setObject:[self getUid]forKey:[self getName]];
}

but i can't able to save this its showing error. kindly any one help me.

share|improve this question
1  
Your method names are not KVC compliant, btw. – Abizern Dec 16 '11 at 6:23

1 Answer

You are missing a line in your code:

[[NSUserDefaults standardUserDefaults] synchronize];

This will save your data to NSUserDefaults

share|improve this answer
add this line after : [prefs setObject:[self getUid]forKey:[self getName]]; – samfisher Dec 16 '11 at 6:14
in your specific case, it will be : [prefs synchronize]; – samfisher Dec 16 '11 at 6:15

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.