iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
SCISmartPropertyBool
@interface SCISmartPropertyBool : NSObject
Defines a smart property class which can hold boolean value.
-
Creates a new instance of
SCISmartPropertyBoolclass.Declaration
Objective-C
- (nonnull instancetype)initWithDefaultValue:(BOOL)defaultValue;Swift
init(defaultValue: Bool)Parameters
defaultValueThe default value for property.
-
Gets the current property value.
Declaration
Objective-C
@property (nonatomic, readonly) BOOL value;Swift
var value: Bool { get } -
Sets weak value for this property if it was not overridden by
-setStrongValue:call.Declaration
Objective-C
- (void)setWeakValue:(BOOL)newValue;Swift
func setWeakValue(_ newValue: Bool)Parameters
newValueThe new value for property.
-
Sets weak value for this property which overrides any previously set value.
Declaration
Objective-C
- (void)setStrongValue:(BOOL)newValue;Swift
func setStrongValue(_ newValue: Bool)Parameters
newValueThe new value for property.
View on GitHub