I have a string that I want to parse the time from:
NSString *longdate = @\"Mar 27, 2011 8:38:38 PM\";
I want to parse this date and output jus
As Dave said, check your time zones. You can tell the date formatter to use your current time zone as well:
[outFormat setTimeZone:[NSTimeZone localTimeZone]];