Contents

isDate(_:equalTo:toUnitGranularity:)

Indicates whether two dates are equal to a given unit of granularity.

Declaration

func isDate(_ date1: Date, equalTo date2: Date, toUnitGranularity unit: NSCalendar.Unit) -> Bool

Parameters

  • date1:

    The first date to compare.

  • date2:

    The second date to compare.

  • unit:

    The smallest unit that must, along with all larger units, be equal in the given dates. For possible values, see Unit.

Return Value

true if both dates have equal date component for all units greater than or equal to the given unit, otherwise false.

See Also

Comparing Dates