How to check if an NSDate belongs to today?
NSDate
I used to check it using first 10 characters from [aDate description]. [[aDate descriptio
[aDate description]
[[aDate descriptio
Working Swift 3 & 4 extension of the suggestion by Catfish_Man:
extension Date { func isToday() -> Bool { return Calendar.current.isDateInToday(self) } }