Formato da data no Swift


150

Como vou converter esse datetime a partir da data?

Do presente: 2016-02-29 12:24:26
a: 29 de fevereiro de 2016

Até agora, este é o meu código e retorna um valor nulo:

let dateFormatter = NSDateFormatter()
dateFormatter.dateFormat = "MM-dd-yyyy"
dateFormatter.timeZone = NSTimeZone(name: "UTC")
let date: NSDate? = dateFormatter.dateFromString("2016-02-29 12:24:26")
print(date)

Respostas:


267

Você deve declarar 2 diferentes NSDateFormatters, o primeiro a converter a string em a NSDatee o segundo a imprimir a data em seu formato.
Tente este código:

let dateFormatterGet = NSDateFormatter()
dateFormatterGet.dateFormat = "yyyy-MM-dd HH:mm:ss"

let dateFormatterPrint = NSDateFormatter()
dateFormatterPrint.dateFormat = "MMM dd,yyyy"

let date: NSDate? = dateFormatterGet.dateFromString("2016-02-29 12:24:26")
print(dateFormatterPrint.stringFromDate(date!))

Swift 3 e superior:

Da NSDateclasse Swift 3 foi alterada para Datee NSDateFormatterpara DateFormatter.

let dateFormatterGet = DateFormatter()
dateFormatterGet.dateFormat = "yyyy-MM-dd HH:mm:ss"

let dateFormatterPrint = DateFormatter()
dateFormatterPrint.dateFormat = "MMM dd,yyyy"

if let date = dateFormatterGet.date(from: "2016-02-29 12:24:26") {
    print(dateFormatterPrint.string(from: date))
} else {
   print("There was an error decoding the string")
}

1
O que acontece se o dateFormatterGet dateFormat precisar aceitar 2 formatos diferentes - um contendo milissegundos e outro sem milissegundos? ou seja, aaaa-MM-dd'T'HH: mm: ssZZZZZ e aaaa-MM-dd'T'HH: mm: ss: SSSZZZZZ
KvnH

1
Eu acho que você deve declarar dois DateFormatters diferentes para obter a data: se o primeiro falhar (retornará nulo), use o segundo.
LorenzOliveto

Você pode me ajudar, qual será o formato de data para "ter 12 de março de 2019 às 12:00:00 GMT-0500 (CDT)"
Devesh

@Devesh deve ser algo como isto "EEE MMM d aaaa HH: mm: ss ZZZZ", veja nsdateformatter.com é um site muito hanful com todos os formatos suportados
LorenzOliveto

@lorenzoliveto sim, eu tentei todo o caminho para esse formato. Também tentei no nsdateformatter.com. Ainda assim, não consigo obter nada para "este dia 12 de março de 2019 às 12:00:00 GMT-0500 (CDT)". Estou recebendo esse formato em um JSON. Não tenho certeza se esta é uma string válida, você pode me ajudar.
Devesh

211

Isso pode ser útil para quem deseja usar dateformater.dateformat; se você quiser 12.09.18usardateformater.dateformat = "dd.MM.yy"

Wednesday, Sep 12, 2018           --> EEEE, MMM d, yyyy
09/12/2018                        --> MM/dd/yyyy
09-12-2018 14:11                  --> MM-dd-yyyy HH:mm
Sep 12, 2:11 PM                   --> MMM d, h:mm a
September 2018                    --> MMMM yyyy
Sep 12, 2018                      --> MMM d, yyyy
Wed, 12 Sep 2018 14:11:54 +0000   --> E, d MMM yyyy HH:mm:ss Z
2018-09-12T14:11:54+0000          --> yyyy-MM-dd'T'HH:mm:ssZ
12.09.18                          --> dd.MM.yy
10:41:02.112                      --> HH:mm:ss.SSS

2
Sua resposta foi tão esclarecedora e corrigiu meu problema. Obrigado.
18719 Andrewcar

50

Swift 3 e superior

let dateFormatter = DateFormatter()
dateFormatter.dateStyle = .medium
dateFormatter.timeStyle = .none
dateFormatter.locale = Locale(identifier: "en_US")
print(dateFormatter.string(from: date)) // Jan 2, 2001

Isso também é útil quando você deseja localizar seu aplicativo. A localidade (identificador :) usa o código ISO 639-1 . Veja também a documentação da Apple


8
Se você deseja localizar seu aplicativo, use-o Locale.currentpara usar a localidade do usuário.
Victor Engel

46

Swift - 5.0

let date = Date()
let formate = date.getFormattedDate(format: "yyyy-MM-dd HH:mm:ss") // Set output formate

extension Date {
   func getFormattedDate(format: String) -> String {
        let dateformat = DateFormatter()
        dateformat.dateFormat = format
        return dateformat.string(from: self)
    }
}

Swift - 4.0

2018-02-01T19: 10: 04 + 00: 00 Converter fev 01,2018

extension Date {
    static func getFormattedDate(string: String , formatter:String) -> String{
        let dateFormatterGet = DateFormatter()
        dateFormatterGet.dateFormat = "yyyy-MM-dd'T'HH:mm:ssZ"

        let dateFormatterPrint = DateFormatter()
        dateFormatterPrint.dateFormat = "MMM dd,yyyy"

        let date: Date? = dateFormatterGet.date(from: "2018-02-01T19:10:04+00:00")
        print("Date",dateFormatterPrint.string(from: date!)) // Feb 01,2018
        return dateFormatterPrint.string(from: date!);
    }
}

36

Versão Swift 3 com o novo Dateobjeto NSDate:

let dateFormatterGet = DateFormatter()
dateFormatterGet.dateFormat = "yyyy-MM-dd HH:mm:ss"

let dateFormatter = DateFormatter()
dateFormatter.dateFormat = "MMM dd,yyyy"

let date: Date? = dateFormatterGet.date(from: "2017-02-14 17:24:26")
print(dateFormatter.string(from: date!))

EDIT: após sugestão de mitul-nakum


2
dateFormatterGet.dateFormat = "aaaa-MM-dd HH: mm: ss" horas formato irá necessitar de capital HH, como é horas em 24 formiato
Mitul Nakum

22

rápido 3

let date : Date = Date()
let dateFormatter = DateFormatter()
dateFormatter.dateFormat = "MMM dd, yyyy"
let todaysDate = dateFormatter.string(from: date)

16

yyyy-MM-dd'T'HH:mm:ss.SSS'Z'Resolvi meu problema no formato (por exemplo, 2018-06-15T00: 00: 00.000Z) com este:

func formatDate(date: String) -> String {
   let dateFormatterGet = DateFormatter()
   dateFormatterGet.dateFormat = "yyyy-MM-dd'T'HH:mm:ss.SSS'Z'"

   let dateFormatter = DateFormatter()
   dateFormatter.dateStyle = .medium
   dateFormatter.timeStyle = .none
   //    dateFormatter.locale = Locale(identifier: "en_US") //uncomment if you don't want to get the system default format.

   let dateObj: Date? = dateFormatterGet.date(from: date)

   return dateFormatter.string(from: dateObj!)
}

9

Swift 3 com uma Dateextensão

extension Date {
    func string(with format: String) -> String {
        let dateFormatter = DateFormatter()
        dateFormatter.dateFormat = format
        return dateFormatter.string(from: self)
    }
}

Então você pode usá-lo assim:

let date = Date()
date.string(with: "MMM dd, yyyy")

8

Swift 4, 4.2 e 5

func getFormattedDate(date: Date, format: String) -> String {
        let dateformat = DateFormatter()
        dateformat.dateFormat = format
        return dateformat.string(from: date)
}

let formatingDate = getFormattedDate(date: Date(), format: "dd-MMM-yyyy")
        print(formatingDate)

1
Esta é uma solução boa e curta com apenas uma DateFormatter()! Algo a ter em atenção: DateFormattertambém leva em consideração a região de aplicação (definida no esquema)! Por exemplo, 2019-05-27 11:03:03 +0000com o formato yyyy-MM-dd HH:mm:sse "Alemanha" conforme a região se transformar 2019-05-27 13:03:03. Essa diferença é causada pelo horário de verão: no verão, a Alemanha é GMT + 2, enquanto no inverno é GMT + 1.
Neph 22/11/19

4

Se você deseja analisar a data de "1996-12-19T16: 39: 57-08: 00", use o seguinte formato "aaaa-MM-dd'T'HH: mm: ssZZZZZ":

let RFC3339DateFormatter = DateFormatter()
RFC3339DateFormatter.locale = Locale(identifier: "en_US_POSIX")
RFC3339DateFormatter.dateFormat = "yyyy-MM-dd'T'HH:mm:ssZZZZZ"
RFC3339DateFormatter.timeZone = TimeZone(secondsFromGMT: 0)

/* 39 minutes and 57 seconds after the 16th hour of December 19th, 1996 with an offset of -08:00 from UTC (Pacific Standard Time) */
let string = "1996-12-19T16:39:57-08:00"
let date = RFC3339DateFormatter.date(from: string)

da Apple https://developer.apple.com/documentation/foundation/dateformatter


3

Outra possibilidade interessante de formatar a data. Esta captura de tela pertence ao aplicativo "Notícias" da Apple.

Captura de tela do aplicativo

Aqui está o código:

let dateFormat1 = DateFormatter()
dateFormat1.dateFormat = "EEEE"
let stringDay = dateFormat1.string(from: Date())

let dateFormat2 = DateFormatter()
dateFormat2.dateFormat = "MMMM"
let stringMonth = dateFormat2.string(from: Date())

let dateFormat3 = DateFormatter()
dateFormat3.dateFormat = "dd"
let numDay = dateFormat3.string(from: Date())

let stringDate = String(format: "%@\n%@ %@", stringDay.uppercased(), stringMonth.uppercased(), numDay)

Nada a acrescentar à alternativa proposta por lorenzoliveto. É simplesmente perfeito.

let dateFormat = DateFormatter()
dateFormat.dateFormat = "EEEE\nMMMM dd"
let stringDate = dateFormat.string(from: Date()).uppercased()

Isso pode ser compactado usando apenas um formatador de data com o formato "EEEE \ nMMMM dd".
precisa saber é o seguinte

Obrigado. Eu não conhecia essa sintaxe. Muito útil! Muito obrigado!
Markus

RECTIFICAÇÃO: Testei o código, mas você não obtém as letras em maiúsculas.
Markus

1
Sim, as letras maiúsculas devem ser aplicadas à sequência retornada, como em sua resposta. O formatador de data não retorna uma cadeia de caracteres em maiúsculas. Basta adicionar .uppercased () como este "dateFormat.string (from: Date ()).
Uppercased

3
    import UIKit
    // Example iso date time
    let isoDateArray = [
        "2020-03-18T07:32:39.88Z",
        "2020-03-18T07:32:39Z",
        "2020-03-18T07:32:39.8Z",
        "2020-03-18T07:32:39.88Z",
        "2020-03-18T07:32:39.8834Z"
    ]


    let dateFormatterGetWithMs = DateFormatter()
    let dateFormatterGetNoMs = DateFormatter()

// Formater with and without millisecond 
    dateFormatterGetWithMs.dateFormat = "yyyy-MM-dd'T'HH:mm:ss.SSS'Z'"
    dateFormatterGetNoMs.dateFormat = "yyyy-MM-dd'T'HH:mm:ss'Z'"

    let dateFormatterPrint = DateFormatter()
    dateFormatterPrint.dateFormat = "MMM dd,yyyy"

    for dateString in isoDateArray {
        var date: Date? = dateFormatterGetWithMs.date(from: dateString)
        if (date == nil){
            date = dateFormatterGetNoMs.date(from: dateString)
        }
        print("===========>",date!)
    }

Embora esse código possa responder à pergunta, fornecer um contexto adicional sobre como e / ou por que resolve o problema melhoraria o valor a longo prazo da resposta.
Piotr Labunski 19/03

2

Para converter 2016-02-29 12:24:26 em uma data, use este formatador de data:

let dateFormatter = NSDateFormatter()
dateFormatter.dateFormat = "yyyy-MM-dd hh:mm:ss"

Editar: para obter a saída 29 de fevereiro de 2016, use este formatador de data:

let dateFormatter = NSDateFormatter()
dateFormatter.dateFormat = "MMM dd, yyyy"

Mas como você converterá esse tipo de formato para data 29 de fevereiro de 2016
Sydney Loteria 29/02

você sabe por que eu fico nulo quando tento imprimir isso?
Pavlos 15/05

2

basta usar a função abaixo para converter o formato da data: -

  let convertedFormat =  convertToString(dateString: "2019-02-12 11:23:12", formatIn: "yyyy-MM-dd hh:mm:ss", formatOut: "MMM dd, yyyy")    //calling function

   print(convertedFormat) // feb 12 2019


 func convertToString (dateString: String, formatIn : String, formatOut : String) -> String {

    let dateFormater = DateFormatter()
    dateFormater.timeZone = NSTimeZone(abbreviation: "UTC") as TimeZone!
    dateFormater.dateFormat = formatIn
    let date = dateFormater.date(from: dateString)

    dateFormater.timeZone = NSTimeZone.system

    dateFormater.dateFormat = formatOut
    let timeStr = dateFormater.string(from: date!)
    return timeStr
 }

1

Para Swift 4.2, 5

Passe a data e o formato da maneira que desejar. Para escolher o formato que você pode visitar, o site NSDATEFORMATTER :

static func dateFormatter(date: Date,dateFormat:String) -> String {
    let dateFormatter = DateFormatter()
    dateFormatter.dateFormat = dateFormat
    return dateFormatter.string(from: date)
}

0

rápido 3

func dataFormat(dataJ: Double) -> String {

        let dateFormatter = DateFormatter()
        dateFormatter.dateStyle = .long
        dateFormatter.timeStyle = .none
        let date = Date(timeIntervalSince1970: dataJ)
        return (dataJ != nil) ? "Today, \(dateFormatter.string(from: date))" : "Date Invalid"

    }

0

Coloque-o em extensão e chame-o como abaixo. É fácil de usar em todo o aplicativo.

self.getFormattedDate(strDate: "20-March-2019", currentFomat: "dd-MMM-yyyy", expectedFromat: "yyyy-MM-dd")

Implementação

func getFormattedDate(strDate: String , currentFomat:String, expectedFromat: String) -> String{
        let dateFormatterGet = DateFormatter()
        dateFormatterGet.dateFormat = currentFomat

        let date : Date = dateFormatterGet.date(from: strDate)!

        dateFormatterGet.dateFormat = expectedFromat
        return dateFormatterGet.string(from: date)
    }

0

Eu recomendo adicionar o fuso horário por padrão. Vou mostrar um exemplo para o swift 5
1. novo arquivo de extensãoDate+Formatter.swift

import Foundation

extension Date {
    func getFormattedDateString(format: String) -> String {
        let dateFormatter = DateFormatter()
        dateFormatter.dateFormat = format
        dateFormatter.timeZone = TimeZone.current
        return dateFormatter.string(from: self)
    }
}
  1. Exemplo de uso
    let date = Date()
    let dateString = date.getFormattedDateString(format: "yyyy-MM-dd HH:mm:ss")
    print("dateString > \(dateString)")
    // print
    // dateString > 2020-04-30 15:15:21
Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.