Skip to content

Instantly share code, notes, and snippets.

@stinger
Last active May 21, 2018 02:04
Show Gist options
  • Star 19 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save stinger/553bdbd7af26f8c43059f8774cbab077 to your computer and use it in GitHub Desktop.
Save stinger/553bdbd7af26f8c43059f8774cbab077 to your computer and use it in GitHub Desktop.
Swift 3: Working with dates
//: # Swift 3: Working with dates
import Foundation
let date = Date()
let myLocale = Locale(identifier: "bg_BG")
//: ### Setting an application-wide `TimeZone`
//: Notice how we use if-let in case the abbreviation is wrong. It will fallback to the default timezone in that case.
if let myTimezone = TimeZone(abbreviation: "EEST") {
print("\(myTimezone.identifier)")
}
//: ### Using a `DateFormatter`
//: You can set a locale and styles to the date formatter. This allows the dates to be formatted in the given language and provides automatic handling of the preferred date formatting in the locale
let formatter = DateFormatter()
formatter.locale = myLocale
formatter.dateStyle = .medium
formatter.timeStyle = .medium
var dateStr = formatter.string(from: date)
print("1. \(dateStr)")
var calendar = Calendar(identifier: .gregorian)
calendar.locale = myLocale
//: ### Fetching `DateComponents` off a `Date`
//: Notice how *a locale is needed for the month symbols to be reported correctly*
let dateComponents = calendar.dateComponents([.day, .month, .year], from: date)
let monthName = calendar.monthSymbols[dateComponents.month! - 1]
print ("2. \(dateComponents.day!) \(monthName) \(dateComponents.year!)")
//: #### Constructing a `Date` object from a `DateComponents` object
//: You need a `DateComponents` object and a `Calendar` object instances to do so
if let componentsBasedDate = calendar.date(from: dateComponents) {
let componentsBasedDateStr = formatter.string(from: componentsBasedDate)
print("3. \(componentsBasedDateStr)")
}
@Pratik-Somaiya
Copy link

Very Helpful.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment