Answers for "swift date from components of two dates"

0

get day difference between two dates swift

let calendar = Calendar.current

// Replace the hour (time) of both dates with 00:00
let date1 = calendar.startOfDay(for: firstDate)
let date2 = calendar.startOfDay(for: secondDate)

let components = calendar.dateComponents([.day], from: date1, to: date2)
return components.day
Posted by: Guest on March-26-2020
0

swift subtract dates

extension Date {

    static func - (lhs: Date, rhs: Date) -> TimeInterval {
        return lhs.timeIntervalSinceReferenceDate - rhs.timeIntervalSinceReferenceDate
    }

}
Posted by: Guest on August-14-2020

Code answers related to "swift date from components of two dates"

Code answers related to "Swift"

Browse Popular Code Answers by Language