Created
October 5, 2016 16:43
-
-
Save suraphanL/bd29049f3863c67086faac844df87246 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 myLocale = Locale(identifier: "th_TH") | |
let dateFormatter = DateFormatter() | |
dateFormatter.dateStyle = .full | |
dateFormatter.timeStyle = .full | |
dateFormatter.locale = myLocale | |
let date = Date() | |
let stringFromDate = dateFormatter.string(from: date) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment