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 Data Type temporary in NSUserDefault. this data later pull back.

I tried to following code.

MyObject *myObject = [[MyObject alloc] init];

[[NSUserDefaults standardUserDefaults] setObject:myObject forKey:@"kMyObject"];

but console show to text me following message.

-[NSUserDefaults setObject:forKey:]: Attempt to insert non-property value '<MyObject: 0x4aadb0>' of class 'MyObject'.  Note that dictionaries and arrays in property lists must also contain only property values.

I can ignore these messages and to force pull out from NSUserDefault.

MyObject *getObject = [[NSUserDefaults standardUserDefaults] objectForKey:@"kMyObject"]; 

but, not give back original data. (I've Checked the NSLog, returns Null.)

How to solve this problem? I only prefer save to NSUserDefaults. not recommended to me using CoreData.

share|improve this question
1  
you have encode it while saving and decode it after fetching.[check out this link][1] [1]: stackoverflow.com/a/2315972/992774 – Mayank Aug 3 '12 at 3:16

2 Answers

up vote 1 down vote accepted

Many Developer recommend to NSKeyedArchiver Taking advantage of the concept. but it must implement protocols to NSCopy NSCoding and because some can be complex. More than that there is an easier way. refer a following code.

Save

    MyObject *myObject = [[MyObject alloc] init];

    NSData *myObjectData  = [NSData dataWithBytes:(void *)&myObject length:sizeof(myObject)];

    [[NSUserDefaults standardUserDefaults] setObject:myObjectData forKey:@"kMyObjectData"];

Load

    NSData *getData = [[NSData alloc] initWithData:[[NSUserDefaults standardUserDefaults] objectForKey:@"kMyObjectData"]];

    MyObject *getObject;

    [getData getBytes:&getObject];
share|improve this answer
Great!!! Thanks. – user1525048 Aug 3 '12 at 4:41

You have to make sure that all objects contained within your MyObject instance are property list (plist) objects. Please see this post.

share|improve this answer

Your Answer

 
discard

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