I am converting a format like 10/24 12:00 PM in string to the equivalent in Date format. I am using the following code:
let dateFormatter = DateFormatter()
dateFormatter.dateFormat = "MM/dd hh:mm aa"
self.dateCompleted = dateFormatter.date(from: self.DeliverBy!)
dateCompleted is a Date variable whereas self.DeliveryBy is a String variable.
I am getting an output like 2000-10-24 17:00:00 UTC where as it should be something like 2017-10-24 12:00:00 UTC. Am i doing something wrong?
I referred http://userguide.icu-project.org/formatparse/datetime
Your date string does not specify a year, which is therefore determined from the default date. What you can do is to set the default date to the (start of the) current day:
(I am in the Europe/Berlin timezone, therefore 12:00 PM is printed as 10:00 GMT.)
You can load the current date info into the DateFormatter: