I use “plist” files to store my settings. The only answer I found is to save the files from this directory:
NSString *rootPath = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
But I don’t know how to do that thing.
Read the docs: NSUserDefaults
So you can save and read your settings in and from NSUserDefaults.
Next time try to be more specific of what you want to do.