Skip to content

Instantly share code, notes, and snippets.

@leeyspaul
Created December 11, 2021 01:06
Show Gist options
  • Save leeyspaul/5a60da9292c1249bcae996879efe14cb to your computer and use it in GitHub Desktop.
Save leeyspaul/5a60da9292c1249bcae996879efe14cb to your computer and use it in GitHub Desktop.
dateFormat example
import Foundation
let date = Date()
let df = DateFormatter()
df.dateFormat = "MMM d, yyyy" // prints out "Dec 10, 2021"
print(df.string(from: date))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment