获取两个 NSDate 之间的所有日期(不是天数)
如何获取两个日期之间的所有日期?
例如: 开始日期 = 2011/01/25 结束日期 = 2011/02/03
How can I get all the dates that come in between 2 dates?
For example:
Start date = 2011/01/25
End date = 2011/02/03
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
1)找出两个日期之间的天数。然后,
查找天数
查找下一个日期
1) Find the no of days between two dates. Then,
To find number of days
To find next date
NSCalendarUnit
用于定义日期和时间之间的步长。处理日期的标准化。iOS 8 API、Swift 2.0
NSCalendarUnit
serves for defining the step between the dates & taking care of the dates being normalized.iOS 8 API, Swift 2.0
要查找两个 NSDate 之间的所有日期:
To find all days between two NSDates: