I’m writing a preference pane & this prefpane saves a plist file with settings & I used to store this in the /Library/Preferences/ folder; This worked fine in OS X 10.6 but now we switched to 10.7 & apples has revoked the rights to write in the /Library/Preferences folder (without an administrator password) i.e. the prefpane can’t write there. Is there a better location that is accessible by all the system where I can save my prefpane’s plist file.
Share
You should probably not explicitly write to
Library/Preferences, but instead useNSUserDefaults. If that’s not enough for you, I believe~/Library/Application Supportis an allowable option.