标签: iphone nsdate
如何检查NSDate是否是一周中的特定日期,例如星期一,星期二,星期三等等?
答案 0 :(得分:17)
从内存(我目前没有方便的ObjC环境):
int yourDOW = [[[NSCalendar currentCalendar] components:NSWeekdayCalendarUnit fromDate:yourDate] weekday]; if (yourDOW == 2) { ... } // Sun = 1, Sat = 7
换句话说: