Inherits from | |
Conforms to | |
Framework | Library/Frameworks/ScreenSaver.framework |
Availability | Available in Mac OS X v10.0 and later. |
Declared in | ScreenSaverDefaults.h |
Related sample code |
ScreenSaverDefaults defines a set of methods for saving and restoring user defaults for screen savers.
Because screen savers are packaged as bundles and loaded by several different applications, it is not possible to use NSUserDefaults to store user preferences for them. ScreenSaverDefaults adds the method defaultsForModuleWithName:
to get an instance corresponding to a particular module name. Screen savers should typically use their bundle identifier as the module name. Once you have an instance of screen saver defaults, you can use the normal methods of NSUserDefaults to load, store, or modify values.
Returns a screen saver defaults instance that reads and writes defaults for the module moduleName.
+ (id)defaultsForModuleWithName:(NSString *)moduleName
ScreenSaverDefaults.h
© 2006 Apple Computer, Inc. All Rights Reserved. (Last updated: 2006-05-23)