Date Format in Swift

How will I convert this datetime from the date? From this: 2016-02-29 12:24:26 to: Feb 29, 2016 So far, this is my code and it returns a nil value: let dateFormatter = NSDateFormatter() dateFormatter.dateFormat = “MM-dd-yyyy” dateFormatter.timeZone = NSTimeZone(name: “UTC”) let date: NSDate? = dateFormatter.dateFromString(“2016-02-29 12:24:26”) print(date) 23 Answers 23