I have an NSString that might contain 5-10 different style dates and times. I need to convert all of them into NSDates.
Does dateWithNaturalLanguageString no longer exist in iPhone SDK 3.1.3?
I do NOT need to convert things like @"last Wednesday at 1 pm".
I need to convert things like: @"01-Feb-2010" @"Feb 1, 2010" @"February 1, 2010" @"12/31/2010" @"12-31-2010"
(Every example I've seen requires that you already KNOW the format of the NSString. I have NO idea what format it will be.)