RangeUISliderDelegate
@objc
public protocol RangeUISliderDelegate
Protocol used delegate the read of the RangeUISlider data. Multiple RangeUISlider instance could use the same delegate. The current slider (on which the user is tapping) is returned in all the methods (so that could be identified on the delegate class).
-
Calls the delegate when the user has started the change of the range.
Declaration
Swift
@objc optional func rangeChangeStarted()
-
Calls the delegate when the user is changing the range by moving the knobs.
Declaration
Swift
@objc optional func rangeIsChanging(event: RangeUISliderChangeEvent)
Parameters
event
the change event data. See
RangeUISliderChangeEvent
. -
Calls the delegate when the user has finished the change of the range.
Declaration
Swift
@objc func rangeChangeFinished(event: RangeUISliderChangeFinishedEvent)
Parameters
event
the change finish event data. See
RangeUISliderChangeFinishedEvent
.