iOS-获取当前时间的年、月、日、时、分、秒 MaemoOPhoneAppleObjective-C黑莓
01 //获取当前时间
02 NSDate *now = [NSDate date];
03 NSLog(@”now date is: %@”, now);
04
05 NSCalendar *calendar = [NSCalendar currentCalendar];
06 NSUInteger unitFlags = NSYearCalendarUnit | NSMonthCalendarUnit |
NSDayCalendarUnit | NSHourCalendarUnit | NSMinuteCalendarUnit |
NSSecondCalendarUnit;
07 NSDateComponents *dateComponent = [calendar components:unitFlags fromDate:now];
08
09 int year = [dateComponent year];
10 int month = [dateComponent month];
11 int day = [dateComponent day];
12 int hour = [dateComponent hour];
13 int minute = [dateComponent minute];
14 int second = [dateComponent second];
15
16 NSLog(@”year is: %d”, year);
17 NSLog(@”month is: %d”, month);
18 NSLog(@”day is: %d”, day);
19 NSLog(@”hour is: %d”, hour);
20 NSLog(@”minute is: %d”, minute);
21 NSLog(@”second is: %d”, second);
转自iOS分享网 http://iosshare.c n
推荐阅读
-
iOS-获取当前时间的年、月、日、时、分、秒 MaemoOPhoneAppleObjective-C黑莓
-
JavaScript获取当前时间,返回格式年-月-日 时:分:秒
-
js将当前时间格式化为 年-月-日 时:分:秒的实现代码
-
PHP获取指定时间段之间的 年,月,天,时,分,秒,php获取
-
PHP获取指定时间段之间的 年,月,天,时,分,秒,php获取
-
php 怎么获取指定时间段之间的 年,月,天,时,分,秒代码实例
-
PHP获取指定时间段其间的 年,月,天,时,分,秒
-
PHP获取指定时间段其间的 年,月,天,时,分,秒
-
PHP获取指定时间段之间的 年,月,天,时,分,秒,php获取_PHP教程
-
php 怎么获取指定时间段之间的 年,月,天,时,分,秒代码实例