如何获取相对日期
如何在 Objective-C 中获取相对日期?
如果我有“今天”,我如何找到“昨天”,“上周”,“最后两周”,“一个月前”,“两个月前”?
how can I get relative dates in Objective-C?
If I have "today", how do I find "yesterday", "last week", "last two weeks", "one month ago", "two months ago"?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因此,如果您有
NSDate *today = [NSDate date];
,那么您可以使用NSDateComponents
获取相对日期。等等。
NSDateComponents
和NSCalendar
自动处理下溢和溢出(除非您使用options:
位将其关闭)。因此,如果今天是“2 月 28 日”而您想要“明天”,它会根据年份自动选择“2 月 29 日”或“3 月 1 日”。非常酷。这也是进行日期操作的唯一正确方法。So if you have an
NSDate *today = [NSDate date];
, then you can useNSDateComponents
to get relative dates.Etc.
NSDateComponents
andNSCalendar
handle underflowing and overflowing automatically (unless you turn it off with theoptions:
bit). So if today is "28 February" and you want "tomorrow", it will automatically choose either "29 February" or "1 March" depending on the year. It's pretty cool. This is also the only proper way of doing date manipulation.