I have several Strings that say "Tonight at 8PM" or "Tonight at 6PM" and I need to find out how to get them converted to NSDates. I need the Format to be yyyy/mm/dd/hh.
Update:
Now I'm getting the wrong year returned. I'm getting 9223372036854775807 for year.
let calendar = NSCalendar.currentCalendar()
let components = calendar.components([.Month, .Day, .Year], fromDate:NSDate())
let year = components.year
let month = components.month
let day = components.day
let NSDateString = "\(month)/\(day)/\(year) at \(date.chopPrefix(11))"
print(NSDateString)