I have a Date format: 2009-08-10T16:03:03Z
that I want to convert to: @"MMM dd, HH:mm a"
I retrieve the xml format in an NSString. I tried to use the NSDateformatter: NSDateFormatter *df = [[NSDateFormatter alloc] init]; [df setDateFormat:@"MMM dd, HH:mm a"];
any ideas?