What kind of format is 2012-05-02T15:44:20.000Z
I've been trying to get it to parse, but having some issues with this section.
NSString *articleDateString = [item valueForChild:@"published"];
        NSDate *articleDate = [NSDate dateFromInternetDateTimeString:articleDateString formatHint:DateFormatHintRFC822];
        NSDateFormatter * dateFormatter = [[[NSDateFormatter alloc] init] autorelease];
        [dateFormatter setTimeStyle:NSDateFormatterShortStyle];
        [dateFormatter setDateStyle:NSDateFormatterShortStyle];
        NSString *dateofarticle = [dateFormatter stringFromDate:articleDate];
It is not RFC822. That's about all I know.