如何根据时间字段(自1970年午夜以来的秒数)获取日期?

时间:2019-02-16 21:40:10

标签: ios swift nscalendar

我正在从api中获取数据,而我获取的值之一是星期几,从api返回的数据如下所示:

"time": 1550376000

我创建了此函数以获取日期:

  func getDate(value: Int) -> String {
        let date = Calendar.current.date(byAdding: .day, value: value, to: Date())
        let dateFormatter = DateFormatter()
        dateFormatter.dateFormat = "E"

        return dateFormatter.string(from: date!)
    }

但是被告知有一种更安全的方法来获取它,而不是假设我们从今天开始连续几天。有谁知道如何根据时间字段(自1970年午夜以来的秒数)构建日期,然后使用Calendar和DateComponent确定日期?

2 个答案:

答案 0 :(得分:1)

看起来您正在接收json数据,因此您应该对数据进行结构化并遵守Decodable协议,以将数据转换为结构正确的对象。

struct Object: Decodable {
    let time: Date
}

不要忘记将解码器的dateDecodingStrategy属性设置为secondsSince1970

do {
    let obj = try decoder.decode(Object.self, from: Data(json.utf8))
    let date = obj.time   // "Feb 17, 2019 at 1:00 AM"
    print(date.description(with: .current))// "Sunday, February 17, 2019 at 1:00:00 AM Brasilia Standard Time\n"
} catch {
    print(error)
}

然后,您只需要获取工作日组件(1 ... 7 = Sun ... Sat),并获取日历shortWeekdaySymbols(已本地化),从组件值中减去1,然后将其用作索引以获取对应的符号。我在此帖子How to print name of the day of the week?中使用的方法与获取完整的工作日姓名相同:

extension Date {
    var weekDay: Int {
        return Calendar.current.component(.weekday, from: self)
    }
    var weekdaySymbolShort: String {
        return Calendar.current.shortWeekdaySymbols[weekDay-1]
    }
}

print(date.weekdaySymbolShort)   // "Sun\n"

答案 1 :(得分:0)

您可以使用CalendarDate获取日期部分:

let date = Date(timeIntervalSince1970: time)// time is your value 1550376000
let timeComponents = Calendar.current.dateComponents([.weekday, .day, .month, .year], from: date)
print("\(timeComponents.weekday) \(timeComponents.day!) \(timeComponents.month!) \(timeComponents.year!)") // print "7 16 2 2019"
print("\(\(Calendar.current.shortWeekdaySymbols[timeComponents.weekday!-1]))") // print "Sat"

希望这会有所帮助。