使用Date int swift获取一年中的最后一天?

我想要获得当年的拉斯日,我需要随着时间的推移而改变,所以如果我在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)
}

相关文章

软件简介:蓝湖辅助工具,减少移动端开发中控件属性的复制和粘...
现实生活中,我们听到的声音都是时间连续的,我们称为这种信...
前言最近在B站上看到一个漂亮的仙女姐姐跳舞视频,循环看了亿...
【Android App】实战项目之仿抖音的短视频分享App(附源码和...
前言这一篇博客应该是我花时间最多的一次了,从2022年1月底至...
因为我既对接过session、cookie,也对接过JWT,今年因为工作...