从NSDate和NSCalendar获取分钟小时秒
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从NSDate和NSCalendar获取分钟小时秒相关的知识,希望对你有一定的参考价值。
// Get the Gregorian calendar
// Get the date
// Get the hours, minutes, seconds
NSDateComponents* nowMinute
= [cal components
:NSMinuteCalendarUnit fromDate
:now
];
NSDateComponents* nowSecond
= [cal components
:NSSecondCalendarUnit fromDate
:now
];
以上是关于从NSDate和NSCalendar获取分钟小时秒的主要内容,如果未能解决你的问题,请参考以下文章
iOS:从 NSDate 获取本地化小时
NSDate/NSCalendar 问题
如何从 iOS swift 中的日期获取 1 小时前?
NSCalendar 获取现在和年底之间的日期差异给出零月份
如何从 NSDate 获取当前日期、时间、年份?
从 NSDateComponents 创建的 NSDate 不正确?