ESTSettingIBeaconSecureUUIDEnable
@interface ESTSettingIBeaconSecureUUIDEnable : ESTSettingReadWrite <NSCopying>
ESTSettingIBeaconSecureUUIDEnable represents iBeacon SecureUUIDEnable value.
-
Designated initializer.
Declaration
Objective-C
- (nonnull instancetype)initWithValue:(BOOL)enabled;Swift
init(value enabled: Bool)Parameters
enablediBeacon SecureUUIDEnable value.
Return Value
Initialized object.
-
Returns current value of iBeacon SecureUUIDEnable setting.
Declaration
Objective-C
- (BOOL)getValue;Swift
func getValue() -> BoolReturn Value
iBeacon SecureUUIDEnable value.
-
Method allows to read value of initialized iBeacon SecureUUIDEnable setting object.
Declaration
Objective-C
- (void)readValueWithCompletion: (nonnull ESTSettingIBeaconSecureUUIDEnableCompletionBlock)completion;Swift
func readValue(completion: @escaping ESTSettingIBeaconSecureUUIDEnableCompletionBlock)Parameters
completionBlock to be invoked when operation is complete.
-
Method allows to create write operation from already initialized iBeacon SecureUUIDEnable setting object. Value provided during initialization will be used as a desired value.
Declaration
Objective-C
- (void)writeValue:(BOOL)enabled completion:(nonnull ESTSettingIBeaconSecureUUIDEnableCompletionBlock) completion;Swift
func writeValue(_ enabled: Bool, completion: @escaping ESTSettingIBeaconSecureUUIDEnableCompletionBlock)Parameters
enabledSecureUUIDEnable value to be written to the device.
completionBlock to be invoked when operation is complete.
View on GitHub
ESTSettingIBeaconSecureUUIDEnable Class Reference