Skip to content

Instantly share code, notes, and snippets.

@DonMag
Last active February 3, 2017 20:37
Show Gist options
  • Select an option

  • Save DonMag/881ce5b60b576f660d24b4f5ba987eba to your computer and use it in GitHub Desktop.

Select an option

Save DonMag/881ce5b60b576f660d24b4f5ba987eba to your computer and use it in GitHub Desktop.
var cvtFormat = NSDateFormatter()
cvtFormat.dateFormat = "H:mm"
var dVal = cvtFormat.dateFromString("21:30")
cvtFormat.dateFormat = "h:mm a"
var newString = cvtFormat.stringFromDate(dVal!)
print(newString)
// or, without the colon
cvtFormat.dateFormat = "HHmm"
dVal = cvtFormat.dateFromString("2130")
cvtFormat.dateFormat = "h:mm a"
newString = cvtFormat.stringFromDate(dVal!)
print(newString)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment