I have got a plist in my Resources folder called "levelconfig.plist" and I want to read something out of it.
I did the following :
-(NSString *) dataFilePath
{
NSArray *path = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentDirectory = [path objectAtIndex:0];
return [documentDirectory stringByAppendingPathComponent:@"levelconfig.plist"];
}
-(void) readPlist{
NSString *filePath = [self dataFilePath];
if([[NSFileManager defaultManager] fileExistsAtPath:filePath]){
NSArray *array = [[NSArray alloc]initWithContentsOfFile:filePath];
NSLog(@"%@",array);
NSLog(@"%@", filePath);
}
}
And in the ccTouchesBegan method I call :
[self readPlist];
My plist contains an array, that should be displayed right ? Is it a good idea to store level data in a .plist file ?
plist file:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Root</key>
<array>
<string>sunday</string>
<string>monday</string>
<integer>44</integer>
</array>
</dict>
</plist>
codeif([[NSFileManager defaultManager] fileExistsAtPath:filePath]){codeit returns (null). So it's empty I guess ? – Martin E. Dec 3 '11 at 22:41