How to determine if an NSDate is today?

前端 未结 20 2111
礼貌的吻别
礼貌的吻别 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条回答
  •  天命终不由人
    2020-11-28 18:50

    There is an easier way than many of the above answers!

    NSDate *date = ... // The date you wish to test
    NSCalendar *calendar = [NSCalendar currentCalendar];
    
    if([calendar isDateInToday:date]) {
        //do stuff
    }
    

提交回复
热议问题