Skip to content

Instantly share code, notes, and snippets.

View almatri's full-sized avatar

Musa Almatri almatri

View GitHub Profile
@almatri
almatri / Dater.swift
Last active July 19, 2017 09:21
Swift DateFormatter Singleton
import UIKit
class Dater: DateFormatter {
static var shared = Dater()
private override init() {
super.init()
self.locale = NSLocale(localeIdentifier: "en_US") as Locale!