iOS Dev (55) 获取当前年、月、日等信息
程序员文章站
2022-04-19 19:05:58
...
iOS Dev (55) 获取当前年、月、日等信息
- 作者:大锐哥
- 博客:http://prevention.iteye.com
-
NSDate *now = [NSDate date];
NSCalendar *calendar = [NSCalendar currentCalendar];
NSUInteger unitFlags =
NSYearCalendarUnit |
NSMonthCalendarUnit |
NSDayCalendarUnit |
NSHourCalendarUnit |
NSMinuteCalendarUnit |
NSSecondCalendarUnit;
NSDateComponents *dateComponent = [calendar components:unitFlags fromDate:now];
int year = [dateComponent year];
int month = [dateComponent month];
int day = [dateComponent day];
int hour = [dateComponent hour];
int minute = [dateComponent minute];
int second = [dateComponent second];
Reference
- http://www.cnblogs.com/programmer-blog/p/3265110.html
上一篇: Spring Boot 自动配置
下一篇: Spring Boot Druid 配置