vote up 0 vote down star

I am trying to create an NSArray from a .plist file, but I keep getting this error:

"'NSUnknownKeyException', reason: '[<NSCFString 0x5bbca60> valueForUndefinedKey:]: this class is not key value coding-compliant for the key Value1.'"

In the .plist file, I have a key called "Item 1" and a string value called "Value1." Then in the code I have an NSArray being created from that file:

-(void)recordValues:(id)sender {

    // read "propertyList.plist" values
    NSString *plistPath = [[NSBundle mainBundle] pathForResource:@"propertyList" ofType:@"plist"];
    originalArray = [[NSArray alloc] initWithContentsOfFile:plistPath];

   // dump the contents of the array to the log
    for (id key in originalArray) {
	    NSLog(@"bundle: key=%@, value=%@", key, [originalArray valueForKey:key]);
    }

    //create an NSMutableArray containing the
    //user's score and the values from originalArray
    NSMutableArray *newArray = [NSMutableArray arrayWithObjects:[NSNumber numberWithFloat:userScore], nil];
    [newArray addObjectsFromArray:array];

    //write xml representation of mutableArray back to propertyList
    [newArray writeToFile:plistPath atomically:NO];

}

    }
flag

Truthfully, I just can't tell what you are trying to do. A bit more precise language, please? – Amagrammer Jul 30 at 19:50
Sure! I have a property list which is an array. These are basically like high scores in a game. When someone plays the game, I add their scores to a brand new NSMutableArray. Then I take this new mutable array and combine it with the high scores from my property list, and write the whole collection back to the original plist file. But I'm getting an error and I don't know why. Does that make sense? – Evelyn Jul 30 at 20:00
I forgot I left one of my old variables in there, which doesn't make sense if you don't know what the app does. :) Sorry. Fixed it. – Evelyn Jul 30 at 20:05
FYI, you could simplify your code and use a single variable if you do this: NSMutableArray *array = [NSMutableArray arrayWithContentsOfFile:plistPath]; As it stands right now, you're leaking originalArray. – Alex Jul 30 at 20:24
Oh yeah. Thanks. – Evelyn Jul 31 at 12:32

2 Answers

vote up 0 vote down check

Arrays do not have keys (they don't need any because their elements are addressed by their indices), only dictionaries consist of key-value pairs. Try:

for (id value in originalArray) {
            NSLog(@"bundle: value=%@", value);
    }
link|flag
Yay! It worked. – Evelyn Jul 30 at 20:08
vote up 0 vote down

In your for loop, you're using originalArray like a dictionary. If the root of your plist is a dictionary, you should use NSDictionary, not NSArray to read it.

link|flag
the root is an NSArray. How do I read it as an NSArray then? I need to add values, and I can't add values with an NSDictionary. – Evelyn Jul 30 at 19:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.