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

[转]根据时间(NSDate)获取具体的信息:月份、星期、天等

时间:2014-11-06 21:49:24      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:style   io   ar   sp   div   on   代码   bs   ad   

[iPhone类代码]计算时间,month,week and day,hour , minutes and second

//initializtion parameter

NSCalendar *calendar = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
NSDate *now;
NSDateComponents *comps = [[NSDateComponents alloc] init];
NSInteger unitFlags = NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit | NSWeekdayCalendarUnit |
                                         NSHourCalendarUnit | NSMinuteCalendarUnit | NSSecondCalendarUnit;
now=[NSDate date];
comps = [calendar components:unitFlags fromDate:now];
week = [comps weekday];    
month = [comps month];
day = [comps day];
hour = [comps hour];
min = [comps minute];
sec = [comps second];

//Week:
1 --星期天
2--星期一
3--星期二
4--星期三
5--星期四
6--星期五
7--星期六

[转]根据时间(NSDate)获取具体的信息:月份、星期、天等

标签:style   io   ar   sp   div   on   代码   bs   ad   

原文地址:http://www.cnblogs.com/sevenology/p/4079892.html

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