码迷,mamicode.com
首页 > 其他好文 > 详细

日期转星期几

时间:2016-12-23 09:56:13      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:for   objects   end   format   bsp   from   cond   date   sse   

 

 日期转星期几

   NSArray *arrWeek=[NSArray arrayWithObjects:@"周日", @"周一", @"周二", @"周三", @"周四", @"周五", @"周六", nil];

    NSDate *date = [NSDate date];

    NSCalendar *calendar = [ [NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];

    NSDateComponents *comps = [[NSDateComponents alloc] init];

    NSInteger unitFlags = NSYearCalendarUnit |

    NSMonthCalendarUnit |

    NSDayCalendarUnit |

    NSWeekdayCalendarUnit |

    NSHourCalendarUnit |

    NSMinuteCalendarUnit |

    NSSecondCalendarUnit;

    comps = [calendar components:unitFlags fromDate:date];

    int week = [comps weekday];

    int a = week - 1;

    NSString *weekStr = [NSString stringWithFormat:@"%@",[arrWeek objectAtIndex:a]];

    NSLog(@"啦啦啦 %@",weekStr);

   

日期转星期几

标签:for   objects   end   format   bsp   from   cond   date   sse   

原文地址:http://www.cnblogs.com/chenzq12/p/6213575.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!