Up
Authors
- Gregory John Casamento (
greg.casamento@gmail.com
)
-
Date: Generated at 2024-11-07 16:52:01 -0500
Copyright: (C) 2019 Free Software Foundation, Inc.
- Declared in:
- Foundation/NSUbiquitousKeyValueStore.h
Availability: MacOS-X 10.7.0
Description forthcoming.
- (
NSArray*)
arrayForKey: (
NSString*)key;
Availability: MacOS-X 10.7.0
Returns the array associated with the specified
key.
- (BOOL)
boolForKey: (
NSString*)key;
Availability: MacOS-X 10.7.0
Returns the Boolean value associated with the
specified key.
- (
NSData*)
dataForKey: (
NSString*)key;
Availability: MacOS-X 10.7.0
Returns the data object associated with the
specified key.
- (
NSDictionary*)
dictionaryForKey: (
NSString*)key;
Availability: MacOS-X 10.7.0
Returns the dictionary object associated with the
specified key.
- (
NSDictionary*)
dictionaryRepresentation;
Availability: MacOS-X 10.7.0
A dictionary containing all of the key-value pairs in the
key-value store.
- (double)
doubleForKey: (
NSString*)key;
Availability: MacOS-X 10.7.0
Returns the double value
associated with the specified key.
- (long long)
longLongForKey: (
NSString*)key;
Availability: MacOS-X 10.7.0
Returns the long
long value associated with the
specified key.
- (id)
objectForKey: (
NSString*)key;
Availability: MacOS-X 10.7.0
Returns the object associated with the specified
key.
- (void)
removeObjectForKey: (
NSString*)key;
Availability: MacOS-X 10.7.0
Removes the value associated with the specified
key from the key-value store.
- (void)
setArray: (
NSArray*)array
forKey: (
NSString*)key;
Availability: MacOS-X 10.7.0
Sets an array object for the specified
key in the key-value store.
- (void)
setBool: (BOOL)flag
forKey: (
NSString*)key;
Availability: MacOS-X 10.7.0
Sets a Boolean value for the specified key
in the key-value store.
- (void)
setData: (
NSData*)data
forKey: (
NSString*)key;
Availability: MacOS-X 10.7.0
Sets a data object for the specified
key in the key-value store.
- (void)
setDictionary: (
NSDictionary*)dict
forKey: (
NSString*)key;
Availability: MacOS-X 10.7.0
Sets a dictionary object for the specified
key in the key-value store.
- (void)
setDouble: (double)val
forKey: (
NSString*)key;
Availability: MacOS-X 10.7.0
Sets a double value for the specified
key in the key-value store.
- (void)
setLongLong: (long long)val
forKey: (
NSString*)key;
Availability: MacOS-X 10.7.0
Sets a long long
value for the specified key in the
key-value store.
- (void)
setObject: (id)obj
forKey: (
NSString*)key;
Availability: MacOS-X 10.7.0
Sets an object for the specified key in the
key-value store.
- (void)
setString: (
NSString*)string
forKey: (
NSString*)key;
Availability: MacOS-X 10.7.0
Sets a string object for the specified
key in the key-value store.
- (
NSString*)
stringForKey: (
NSString*)key;
Availability: MacOS-X 10.7.0
Returns the string associated with the specified
key.
- (void)
synchronize;
Availability: MacOS-X 10.7.0
Explicitly synchronizes in-memory keys and
values with those stored on disk.
Up