Przedłużenie na SashaZ
Swift iOS 8 i nowsze Kiedy potrzebujesz czegoś więcej niż tylko większych lub mniejszych porównań dat. Na przykład, czy jest to ten sam dzień, czy też dzień poprzedni, ...
Uwaga: nigdy nie zapomnij o strefie czasowej. Strefa czasowa kalendarza ma domyślną, ale jeśli nie podoba Ci się ta domyślna, musisz samodzielnie ustawić strefę czasową. Aby wiedzieć, który jest dzień, musisz wiedzieć, o jaką strefę czasową pytasz.
extension Date {
func compareTo(date: Date, toGranularity: Calendar.Component ) -> ComparisonResult {
var cal = Calendar.current
cal.timeZone = TimeZone(identifier: "Europe/Paris")!
return cal.compare(self, to: date, toGranularity: toGranularity)
}
}
Użyj tego w ten sposób:
if thisDate.compareTo(date: Date(), toGranularity: .day) == .orderedDescending {
// thisDate is a previous day
}
Bardziej złożony przykład. Znajdź i odfiltruj wszystkie daty w tablicy, które pochodzą z tego samego dnia co „findThisDay”:
let formatter = DateFormatter()
formatter.timeZone = TimeZone(identifier: "Europe/Paris")
formatter.dateFormat = "yyyy/MM/dd HH:mm:ss"
let findThisDay = formatter.date(from: "2018/11/05 08:11:08")!
_ = [
formatter.date(from: "2018/12/05 08:08:08")!,
formatter.date(from: "2018/11/05 08:11:08")!,
formatter.date(from: "2018/11/05 11:08:22")!,
formatter.date(from: "2018/11/05 22:08:22")!,
formatter.date(from: "2018/11/05 08:08:22")!,
formatter.date(from: "2018/11/07 08:08:22")!,
]
.filter{ findThisDay.compareTo(date: $0 , toGranularity: .day) == .orderedSame }
.map { print(formatter.string(from: $0)) }