Created
November 18, 2020 21:11
-
-
Save fethica/204c808408ecac89206024e74a842fa5 to your computer and use it in GitHub Desktop.
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
let duration = "44:18" | |
let dateFormatter = DateFormatter() | |
dateFormatter.dateFormat = "mm:ss" | |
let date = dateFormatter.date(from: duration) | |
let minutesComponents = Calendar.current.dateComponents([.minute, .second], from: date!) | |
let accessibilityLabel = DateComponentsFormatter.localizedString(from: minutesComponents, unitsStyle: .spellOut) | |
print(accessibilityLabel) // forty-four minutes, eighteen seconds |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment