本文介绍了从NSDate获取日数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要以 NSDate
作为数字来获得一周中的某一天。
I need to get the day of the week from an NSDate
as a number.
如果今天是星期四,我应该得到数字4,如果星期五然后数字5.
For example, if today is Thursday I should get number 4, if Friday then number 5.
此功能是否已存在?
推荐答案
或
有点棘手
NSCalendar *calender = [NSCalendar currentCalendar];
NSDateComponents *dateComponents = [calender components:NSWeekdayCalendarUnit fromDate:[NSDate date]];
NSInteger dayCount = [dateComponents weekday]-1;
if (dayCount==0) {//as sunday will become 0, you need 7.
dayCount=7;
}
NSLog(@"Day count : %ld",dayCount);
这篇关于从NSDate获取日数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!