How to determine if an NSDate is today?

前端 未结 20 2092
礼貌的吻别
礼貌的吻别 2020-11-28 18:20

How to check if an NSDate belongs to today?

I used to check it using first 10 characters from [aDate description]. [[aDate descriptio

20条回答
  •  旧时难觅i
    2020-11-28 18:55

    Working Swift 3 & 4 extension of the suggestion by Catfish_Man:

    extension Date {
    
        func isToday() -> Bool {
            return Calendar.current.isDateInToday(self)
        }
    
    }
    

提交回复
热议问题