The delegate the receives messages from AKFAccountPreferences
.
Extends Protocol: | NSObject |
Declared in: | AKFAccountPreferences.h |
accountPreferences:didDeletePreferenceForKey:error:
Notifies the delegate that a single preference was deleted.
Parameter | Description |
---|---|
accountPreferences | The AKFAccountPreferences instance that deleted the preference. |
key | The key for the deleted preference. |
error | The error if the preference could not be deleted. |
- (void)
accountPreferences: | (AKFAccountPreferences *)accountPreferences |
didDeletePreferenceForKey: | (NSString *)key |
error: | (nullable NSError *)error; |
AKFAccountPreferences.h
accountPreferences:didLoadPreferenceForKey:value:error:
Notifies the delegate that a single preference was loaded.
Parameter | Description |
---|---|
accountPreferences | The AKFAccountPreferences instance that loaded the preference. |
key | The key for the loaded preference. |
value | The value for the loaded preference. |
error | The error if the preference could not be loaded. |
- (void)
accountPreferences: | (AKFAccountPreferences *)accountPreferences |
didLoadPreferenceForKey: | (NSString *)key |
value: | (nullable NSString *)value |
error: | (nullable NSError *)error; |
AKFAccountPreferences.h
accountPreferences:didLoadPreferences:error:
Notifies the delegate that preferences were loaded.
Parameter | Description |
---|---|
accountPreferences | The AKFAccountPreferences instance that loaded the preferences. |
preferences | The dictionary of preferences. |
error | The error if the preferences could not be loaded. |
- (void)
accountPreferences: | (AKFAccountPreferences *)accountPreferences |
didLoadPreferences | |
nullable | |
NSDictionary | |
NSString | |
NSString | |
preferences | |
error: | (nullable NSError *)error; |
AKFAccountPreferences.h
accountPreferences:didSetPreferenceForKey:value:error:
Notifies the delegate that a single preference was set.
Parameter | Description |
---|---|
accountPreferences | The AKFAccountPreferences instance that set the preference. |
key | The key for the set preference. |
value | The value for the set preference. |
error | The error if the preference could not be set. |
- (void)
accountPreferences: | (AKFAccountPreferences *)accountPreferences |
didSetPreferenceForKey: | (NSString *)key |
value: | (NSString *)value |
error: | (nullable NSError *)error; |
AKFAccountPreferences.h