Skip to content

Instantly share code, notes, and snippets.

@lawrenceching
Created May 24, 2016 18:30
Show Gist options
  • Save lawrenceching/88bffd1ebef34342a4e2110b1d0328d7 to your computer and use it in GitHub Desktop.
Save lawrenceching/88bffd1ebef34342a4e2110b1d0328d7 to your computer and use it in GitHub Desktop.
[Swift] Convert string to NSDate
let strDate = "2016-06-01T00:00:00Z"
let dateFormatter = NSDateFormatter()
dateFormatter.dateFormat = "yyyy-MM-dd'T'HH:mm:ssZ"
let date = dateFormatter.dateFromString(strDate)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment