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