Hi there,
I'm learning how to use plist files for storing data in my iPhone app. I've been reading a bunch of the questions about plist and dictionaryWithContentsOfFile on this site, but can't see what I'm doing wrong.
The following line returns nil ("The dictionary is null" to the console).
NSLog(@"The dictionary is %@",[NSDictionary dictionaryWithContentsOfFile:@"myFile"]);
The myFile.plist file is in the resources folder, and contains a few strings:
name john aname jen
Am I missing something here?
Cheers, Matt