Created
June 2, 2021 20:48
-
-
Save mokagio/c1cb4fbdca1605b7659e0a0dcb62d08e to your computer and use it in GitHub Desktop.
Swift Date with year, month, and day
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extension Date { | |
static func with(calendar: Calendar = .current, year: Int, month: Int, day: Int) -> Date { | |
// Because the `calendar` value is non-nil, it's safe to force unwrap the `date` value | |
DateComponents(calendar: calendar, year: year, month: month, day: day).date! | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment