我想要获得当年的拉斯日,我需要随着时间的推移而改变,所以如果我在2018年使用这个功能,我会得到2018年12月31日的最后一天,但如果我现在使用这个功能它应该给我12月31日2017年.我知道我可以通过使用获得当前日期
var current = Date()
而且我知道我可以在一年后的同一天得到例如应该是近似的
var dayComponents = DateComponents() dayComponents.day = 365 let calendar = Calendar(identifier: .gregorian) if let lastDate = calendar.date(byAdding: dayComponents,to: Date()) { return lastDate } else { return Date() }
问题是我需要从现在到年底,我该如何实现这一目标?
解决方法
我会得到当前日期的当前年度组成部分.加一到明年.然后使用它来获得当年的第一天.然后减去1天以获得当年的最后一天.
// Get the current year let year = Calendar.current.component(.year,from: Date()) // Get the first day of next year if let firstOfNextYear = Calendar.current.date(from: DateComponents(year: year + 1,month: 1,day: 1)) { // Get the last day of the current year let lastOfYear = Calendar.current.date(byAdding: .day,value: -1,to: firstOfNextYear) }
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。