IOS使用NSDate获取当前工作日

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IOS使用NSDate获取当前工作日相关的知识,希望对你有一定的参考价值。

  1. // get the current date
  2. NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init];
  3. [dateFormat setDateFormat:@"yyyy-MM-dd"];
  4. NSDate *now = [[NSDate alloc] init];
  5.  
  6. // get the weekday of the current date
  7. NSCalendar* cal = [NSCalendar currentCalendar];
  8. NSDateComponents* components = [cal components:NSWeekdayCalendarUnit fromDate:now];
  9. NSInteger weekday = [components weekday]; // 1 = Sunday, 2 = Monday, etc.

以上是关于IOS使用NSDate获取当前工作日的主要内容,如果未能解决你的问题,请参考以下文章

如何使 NSDate 与关联对象一起工作?

iOS NSDate,NSDateFormatter,NSTimeZone,NSTimeInterval

ios 获取当前时间

iOS 获取当前时间

如何在ios中获取今天日期的开始和结束时间? [复制]

以时间戳格式获取当前 NSDate