RSDUSMeasurementPickerDataSource

public protocol RSDUSMeasurementPickerDataSource : RSDMultipleComponentPickerDataSource

RSDUSMeasurementPickerDataSource is a generic protocol for converting US Customary units (multiple component) to metric units.

  • defaultAnswer Extension method

    US measurement pickers do not have a default answer.

    Declaration

    Swift

    public var defaultAnswer: Any? { get }
  • selectedAnswer(with:) Extension method

    Returns the selected answer created by the union of the selected rows.

    Declaration

    Swift

    public func selectedAnswer(with selectedRows: [Int]) -> Any?

    Parameters

    selectedRows

    The selected rows, where there is a selected row for each component.

    Return Value

    The answer created from the given array of selected rows.

  • selectedRows(from:) Extension method

    Returns the selected rows that match the given selected answer (if any).

    Declaration

    Swift

    public func selectedRows(from selectedAnswer: Any?) -> [Int]?

    Parameters

    selectedAnswer

    The selected answer.

    Return Value

    The selected rows, where there is a selected row for each component, or nil if not all rows are selected.