当前位置 : 主页 > 手机开发 > 其它 >

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

来源:互联网 收集:自由互联 发布时间:2021-06-11
我想要获得当年的拉斯日,我需要随着时间的推移而改变,所以如果我在2018年使用这个功能,我会得到2018年12月31日的最后一天,但如果我现在使用这个功能它应该给我12月31日2017年.我知道我
我想要获得当年的拉斯日,我需要随着时间的推移而改变,所以如果我在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)
}
网友评论