3

我正在尝试将数组保存到NSUserDefaults. 我读到我必须使用编码器和解码器,但我仍然得到同样的错误

*** -[NSUserDefaults setObject:forKey:]: Attempt to insert non-property value '(
    "<Item: 0x1e86e380>",
    "<Item: 0x1e86fd60>",
    "<Item: 0x1e86fda0>",
    "<Item: 0x1e86fde0>",
    "<Item: 0x1e86fe10>"
)' of class '__NSArrayM'.  Note that dictionaries and arrays in property lists must also contain only property values.
[unknown][unknown][unknown][unknown][unknown](gdb) 

为什么??

这是我的代码:

这是我的模型。它有NSStrings,NSNumbersNSMutableArrays:

- (void)encodeWithCoder:(NSCoder *)encoder
{
    [encoder encodeObject: self.title forKey:@"title"];
    [encoder encodeObject: self.desc forKey:@"desc"];
    [encoder encodeObject: (NSNumber*) self.day forKey:@"day"];
    [encoder encodeObject: self.images forKey:@"images"];
}

- (id)initWithCoder:(NSCoder *)decoder
{
    self = [super init];
    if( self != nil )
    {
        self.title = [decoder decodeObjectForKey: @"title"];
        self.desc = [decoder decodeObjectForKey: @"desc"];
        self.day = [decoder decodeObjectForKey: @"day"];
        self.images = [decoder decodeObjectForKey: @"images"];

    }
    return self;
}

这是在 AppDelegate 的DidFinishLaunching方法中:

if([[NSUserDefaults standardUserDefaults] objectForKey:@"savedData"] == nil)
{
    items = [[NSMutableArray alloc] init];

    NSString *filePath = [[NSBundle mainBundle] pathForResource:@"items" ofType:@"json"];
    NSString *contents = [NSString stringWithContentsOfFile: filePath  encoding: NSUTF8StringEncoding error: nil];
    SBJsonParser *jsonParser = [[SBJsonParser alloc] init];
    NSMutableDictionary *json = [jsonParser objectWithString: contents];
    jsonParser = nil;
    items = json[@"item"];

    for(NSDictionary *itemDict in items)
    {

        Item *item = [[Item alloc] init];

        item.title = [itemDict valueForKey:@"title"];
        item.desc = [itemDict valueForKey:@"description"];
        item.day = [itemDict valueForKey:@"day"];
        item.images = [itemDict valueForKey: @"images"];

        [items addObject: item];

    }    
}
else
{

    NSData *decodedObject = [userDefault objectForKey: [NSString stringWithFormat:@"savedData"]];
    NSArray *decodedArray =[NSKeyedUnarchiver unarchiveObjectWithData: decodedObject];


    items = [decodedArray mutableCopy];

}

我有这个AppWillTerminate

   userDefault = [NSUserDefaults standardUserDefaults];
   NSData *encodedObject = [NSKeyedArchiver archivedDataWithRootObject: items];
   [userDefault setObject: encodedObject forKey:[NSString stringWithFormat:@"savedData"]];
4

1 回答 1

1

前言:了解用户默认值不是通用数据库。除非您建议存储的数据非常小,否则我强烈建议您不要这样做。另一种方法是将数据存储在明确定义的位置,例如应用程序支持目录。

编辑

在上一段中,我已经说过应用程序支持目录不应该用于将更改的数据。我找不到任何支持这一点的东西。苹果自己的文档指出,它是“您的应用程序存储任何类型的文件的地方,该文件支持该应用程序但不是应用程序运行所必需的”,用户数据不应该存储在那里,并且每个应用程序都应该创建和维护自己的目录里面,而不是写到它的顶层。完全不确定我是在哪里捡到这本小说的,很抱歉让它长期存在。

结束编辑

话虽如此,当编译器抱怨“非属性值”时,这意味着您正在尝试编写不是NSArray, NSDictionary, NSString, NSData, NSDate或的东西NSNumber.

您是正确的,您自己的对象需要使用 NSKeyedArchiver 和 NSKeyedUnarchiver。但仅仅因为您NSCoding在模型对象中实现方法并不会改变它不是属性列表值的事实。

您需要做的是在尝试存储每个对象NSKeyedArchiver 之前使用。这会产生一个NSData可以存储为属性列表对象的实例。

于 2013-04-23T13:24:02.927 回答