Skip to content

Instantly share code, notes, and snippets.

@rickyngan
rickyngan / dateFormatter.swift
Created September 21, 2016 06:19 — forked from m1entus/dateFormatter.swift
Swift NSDateFormatter singleton
class var userDateFormatter : NSDateFormatter {
struct Static {
static let instance: NSDateFormatter = {
let dateFormatter = NSDateFormatter()
dateFormatter.dateFormat = "yyyy-MM-dd'T'HH:mm:ss.SSS'Z'"
return dateFormatter
}()
}
return Static.instance
}