I must be over looking something simple here Rob helped me earlier on this same project. My Dictionary is called 'skills' and I am just trying now to write the Dictionary to the Hard Drive using this code
When I look in the users folder there is no test.plist file? I read the documentation and searched on line and followed the examples. WriteToFile is a method of NSMutableDictionary.
I am just storing information in the dictionary from 2 NSTextFields as the Object and Key With this code
There must be a simple answers why I can't see the file, I hope
Code:
[skills writeToFile:@"/Users/test.plist" atomically:YES];
When I look in the users folder there is no test.plist file? I read the documentation and searched on line and followed the examples. WriteToFile is a method of NSMutableDictionary.
I am just storing information in the dictionary from 2 NSTextFields as the Object and Key With this code
Code:
[skills setObject:[skillBonusPrefField stringValue] forKey:[skillNamePref stringValue]];
There must be a simple answers why I can't see the file, I hope