CalendarRangeSelectionState

public enum CalendarRangeSelectionState

The CalendarRangeSelectionState enum represents the different states of a range selection.

  • The intermediate state, where the user has selected the first date of the range, but not the second.

    Declaration

    Swift

    case intermediate(Date)
  • The final state, where the user has selected both dates of the range.

    Declaration

    Swift

    case range(ClosedRange<Date>)