Skip to content

Instantly share code, notes, and snippets.

@jutoart
Last active October 1, 2019 10:21
Show Gist options
  • Save jutoart/fb676bb2f157e8837499d129693a0f4c to your computer and use it in GitHub Desktop.
Save jutoart/fb676bb2f157e8837499d129693a0f4c to your computer and use it in GitHub Desktop.
Get Date object from Taiwan date string
let dateFormatter = DateFormatter()
dateFormatter.dateFormat = "yyyMMdd"
dateFormatter.locale = Locale(identifier: "zh_Hant_TW")
dateFormatter.timeZone = TimeZone(identifier: "Asia/Taipei")
dateFormatter.calendar = Calendar(identifier: .republicOfChina)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment