Skip to content

Instantly share code, notes, and snippets.

@lbehnke
Last active August 29, 2015 14:10
Show Gist options
  • Save lbehnke/0e5f3d76bb7aff03193e to your computer and use it in GitHub Desktop.
Save lbehnke/0e5f3d76bb7aff03193e to your computer and use it in GitHub Desktop.
Format time passed as unix time stamp
var secondsSince1970 = NSDate.date().timeIntervalSince1970
var dateFormatter = NSDateFormatter()
dateFormatter.dateFormat = "HH:mm"
let thisDate = NSDate(timeIntervalSince1970: secondsSince1970);
println("Time : " + dateFormatter.stringFromDate(thisDate))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment