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

取得NSDate实例各个字段的数字

时间:2014-07-22 22:50:13      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   re   c   代码   

代码:

 1     NSDate *now = [NSDate date];
 2     NSCalendar *calendar = [NSCalendar currentCalendar];
 3     
 4     //获取年、月、日、时、分、秒等组件
 5     NSDateComponents *dateComponents = [calendar components:NSCalendarUnitYear | NSCalendarUnitMonth | NSCalendarUnitDay | NSCalendarUnitHour | NSCalendarUnitMinute | NSCalendarUnitSecond fromDate:now];
 6     NSLog(@"[%d]", dateComponents.year);    //
 7     NSLog(@"[%d]", dateComponents.month);   //
 8     NSLog(@"[%d]", dateComponents.day);     //
 9     NSLog(@"[%d]", dateComponents.hour);    //
10     NSLog(@"[%d]", dateComponents.minute);  //
11     NSLog(@"[%d]", dateComponents.second);  //

取得NSDate实例各个字段的数字,布布扣,bubuko.com

取得NSDate实例各个字段的数字

标签:style   blog   color   re   c   代码   

原文地址:http://www.cnblogs.com/cmembd/p/3855834.html

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