Skip to content

Instantly share code, notes, and snippets.

@iAmrSalman
Created August 5, 2017 05:50
Show Gist options
  • Save iAmrSalman/fcd05d3b5564641eb20ab6dee7376a6a to your computer and use it in GitHub Desktop.
Save iAmrSalman/fcd05d3b5564641eb20ab6dee7376a6a to your computer and use it in GitHub Desktop.
[formate loclized date from unix date] #swift3 #date
fileprivate func formatDate(fromUnixDate ud: Int) -> String {
let date = Date(timeIntervalSince1970: TimeInterval(ud))
let dateString = DateFormatter.localizedString(from: date, dateStyle: .medium, timeStyle: .short)
return dateString
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment