Swift - Converting JSON date to Swift compatible date

后端 未结 2 1792
天命终不由人
天命终不由人 2021-01-15 02:49

I am trying to convert a date in which the javascript code is generating the current date using the Date() function. But when I print it out, I am getting nil.

my co

2条回答
  •  青春惊慌失措
    2021-01-15 03:44

    Swift 4+

    let dateFormatter = DateFormatter()
    dateFormatter.dateFormat = "yyyy-MM-dd'T'HH:mm:ssZ"
    let str = "2013-07-21T19:32:00Z"
    
    if let date = dateFormatter.date(from: str) {
        print(date)
    }
    

    Output: 2013-07-21 19:32:00 +0000

提交回复
热议问题