FUIRangeSliderContentView
open class FUIRangeSliderContentView : FUIFormCellContentView<FUITextField, FUIControlState, FUIText>, FUITitleComponent, FUISubtitleComponent, UITextFieldDelegate
The content view of the FUIRangeSliderFormCell or FUIRangeSliderCollectionViewCell.
-
Declaration
Swift
public let subtitle: FUIText
-
Undocumented
Declaration
Swift
public var validationMessage: String? -
Undocumented
Declaration
Swift
public var validationView: FUIInlineValidationView!
-
The fixed minimum value.
Declaration
Swift
public var minimumValue: Double { get set } -
The fixed maximum value.
Declaration
Swift
public var maximumValue: Double { get set } -
The minimum value that the user has selected.
Declaration
Swift
public var lowerValue: Double { get set } -
The maximum value that the user has selected.
Declaration
Swift
public var upperValue: Double { get set } -
Determine whether the slider displays a single thumb or double thumb. The default is
true(double thumb).Note: If set to
false, thelowerTextFieldwill be hidden andlowerValuewill then be equal to the minimum value andupperValuewill be equal to the user-selected value.Declaration
Swift
public var isRangeSelection: Bool { get set } -
Set the minimum value of the slider as it changes. The default is
1.Declaration
Swift
open var interval: Double { get set } -
If set, value change events are generated any time the value changes due to dragging. The default is
true.Declaration
Swift
open var isContinuous: Bool { get set } -
Determine whether the view is editable.
Declaration
Swift
public var isEditable: Bool { get set } -
Implementation of the change handle. It is invoked when the slider is slid along the track.
Declaration
Swift
public var onChangeHandler: ((_ lower: Double, _ upper: Double) -> Void)? -
Undocumented
Declaration
Swift
public var keyName: String? { get set } -
Undocumented
Declaration
Swift
public let upperTextField: FUITextField -
Undocumented
Declaration
Swift
public let lowerTextField: FUITextField -
Undocumented
Declaration
Swift
public var slider: FUIRangeSlider -
Undocumented
Declaration
Swift
public let sliderContainer: UIView
-
Undocumented
Declaration
Swift
open override var accessibilityElements: [Any]? { get set } -
Undocumented
Declaration
Swift
open override func accessibilityElementCount() -> Int -
Undocumented
Declaration
Swift
open override func accessibilityElement(at index: Int) -> Any? -
Undocumented
Declaration
Swift
open override func index(ofAccessibilityElement element: Any) -> Int
-
Undocumented
Declaration
Swift
public func getNSSTrackTintColor(_ view: UIView) -> UIColor?