Skip to content

Instantly share code, notes, and snippets.

@iAmrSalman
Created August 5, 2017 07:11
Show Gist options
  • Save iAmrSalman/35a30d1e24cb204addb3207b78fa73fc to your computer and use it in GitHub Desktop.
Save iAmrSalman/35a30d1e24cb204addb3207b78fa73fc to your computer and use it in GitHub Desktop.
[localized date string] #swift3 #date #localization
extension Date {
func localizedString() -> String {
let dateString = DateFormatter.localizedString(from: self, dateStyle: .medium, timeStyle: .short)
return dateString
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment