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'd like to save an NSMutableDictionary object in NSUserDefaults. The key type in NSMutableDictionary is NSString, the value type is NSArray, which contains a list of object which implements NSCoding. Per document, NSString and NSArray both are conform to NSCoding.

I am getting this error:

[NSUserDefaults setObject: forKey:]: Attempt to insert non-property value.... of class NSCFDictionary.

Any solution for this?

share|improve this question

6 Answers

up vote 135 down vote accepted

I found out one alternative, before save, I encode the root object (NSArray object) using NSKeyedArchiver, which ends with NSData. Then use UserDefaults save the NSData.

When I need the data, I read out the NSData, and use NSKeyedUnarchiver to convert NSData back to the object.

It is a little cumbersome, because i need to convert to/from NSData everytime, but it just works.

Here is one example per request:

Save:

NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
NSMutableArray *arr = ... ; // set value
NSData *data = [NSKeyedArchiver archivedDataWithRootObject:arr];
[defaults setObject:data forKey:@"theKey"];

Load:

NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
NSData *data = [defaults objectForKey:@"theKey"];
NSArray *arr = [NSKeyedUnarchiver unarchiveObjectWithData:data];

The element in the array implements

@interface CommentItem : NSObject<NSCoding> {
    NSString *value;
}

Then in the implementation of CommentItem, provides two methods:

-(void)encodeWithCoder:(NSCoder *)encoder
{
    [encoder encodeObject:value forKey:@"Value"];
}

-(id)initWithCoder:(NSCoder *)decoder
{
    self.value = [decoder decodeObjectForKey:@"Value"];
    return self;
}

Anyone has better solution?

Thanks everyone.

share|improve this answer
3  
Do you have a code sample you can share, I've been trying to do this in post (537044) but with no joy – tigermain Feb 11 '09 at 16:40
This worked nicely for me. I was trying to encode an NSArray of NSDictionary objects where some of the keys were not strings. Simply using the NSKeyedArchiver and Unarchiver on the NSArray got rid of the "Attempt to insert non-property value" error. – John Wright Jul 6 '09 at 17:21
When do I need to release the loaded object? No alloc was called, so I would assume it is autorelased? – Marc Apr 16 '12 at 13:08
3  
we might need add [defaults synchronize] for saving – doreamon Sep 19 '12 at 9:27

If you're saving an object in user defaults, all objects, recursively, all the way down, must be property list objects. Conforming to NSCoding doesn't mean anything here-- NSUserDefaults won't automatically encode them into NSData, you have to do that yourself. If your "list of object which implements NSCoding" means objects that are not property list objects, then you'll have to do something with them before saving to user defaults.

FYI the property list classes are NSDictionary, NSArray, NSString, NSDate, NSData, and NSNumber. You can write mutable subclasses (like NSMutableDictionary) to user preferences but the objects you read out will always be immutable.

share|improve this answer
34  
I should also mention that an NSDictionary is only a property list object if the keys are NSStrings. In general you can use other objects as dictionary keys, but where property lists are required the keys must be strings. – Tom Harrington Jan 23 '09 at 4:45
I came across the same problem, when i wanted to store NSURL as an object in a NSDictionary and store it in the NSUserDefaults. I had to change it into an NSString, than it worked. – NicTesla Oct 31 '11 at 9:46
1  
Great! In my case, I tried to use NSNumber as a key of NSDictionary in user defaults. I have to change it into an NSString. – Joey May 25 '12 at 1:40

Are all of your keys in the dictionary NSStrings? I think they have to be in order to save the dictionary to a property list.

share|improve this answer
1  
the keys are NSString. but the value is NSArray, whose element is a customized class which implements NSCoding. It appears that solution not working because UserDefaults only supports 6 types of class, not consider NSCoding. – BlueDolphin Jan 23 '09 at 21:11

Have you considered looking at implementing the NSCoding Protocol? This will allow you encode and decode on the iPhone with two simple methods that are implemented with the NSCoding. First you would need to adding the NSCoding to your Class.

Here is an example:

This is in the .h file

@interface GameContent : NSObject <NSCoding>

Then you will need to implement two methods of the NSCoding Protocol.

    - (id) initWithCoder: (NSCoder *)coder
    {
        if (self = [super init])
        {
               [self setFoundHotSpots:[coder decodeObjectForKey:@"foundHotSpots"]];
            }
    }

    - (void) encodeWithCoder: (NSCoder *)coder
    {
           [coder encodeObject:foundHotSpots forKey:@"foundHotSpots"];
    }

Check out the documentation on NSCoder for more information. That has come in really handy for my projects where I need to save the state of the application on the iPhone if the application is closed and restore it back to it's state when its back on.

The key is to add the protocol to the interface and then implement the two methods that are part of NSCoding.

I hope this helps!

share|improve this answer

Simplest Answer :

NSDictionary is only a plist object , if the keys are NSStrings. So, Store the "Key" as NSString with stringWithFormat.

Solution :

NSString *key = [NSString stringWithFormat:@"%@",[dictionary valueForKey:@"Key"]];

Benefits :

1) It will add "String-Value".

2) It will add "Empty-Value" when your Value of Variable is NULL.

share|improve this answer
1  
This was apparently my problem. Thanks for the answer! – Andrei Mar 30 at 16:07

There is no better solution. Another option would be to just save the coded object to disk - but that is doing the same thing. They both end up with NSData that gets decoded when you want it back.

share|improve this answer

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.