AKFAccountPreferencesDelegate
Versi yang lebih baru dari kelas ini sudah tersedia. Lihat versi terbaru.

The delegate the receives messages from AKFAccountPreferences.

Extends Protocol:NSObject
Declared in:AKFAccountPreferences.h
Metode Instans
accountPreferences:didDeletePreferenceForKey:error:

Notifies the delegate that a single preference was deleted.

ParameterKeterangan
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;
Dinyatakan dalam: AKFAccountPreferences.h
accountPreferences:didLoadPreferenceForKey:value:error:

Notifies the delegate that a single preference was loaded.

ParameterKeterangan
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;
Dinyatakan dalam: AKFAccountPreferences.h
accountPreferences:didLoadPreferences:error:

Notifies the delegate that preferences were loaded.

ParameterKeterangan
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;
Dinyatakan dalam: AKFAccountPreferences.h
accountPreferences:didSetPreferenceForKey:value:error:

Notifies the delegate that a single preference was set.

ParameterKeterangan
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;
Dinyatakan dalam: AKFAccountPreferences.h