Contents

isDate(_:inSameDayAs:)

Returns a Boolean value indicating whether a date is within the same day as another date.

Declaration

func isDate(_ date1: Date, inSameDayAs date2: Date) -> Bool

Parameters

  • date1:

    A date to check for containment.

  • date2:

    A date to check for containment.

Return Value

true if date1 and date2 are in the same day, as defined by the calendar and calendar’s locale; otherwise, false.

See Also

Comparing Dates