I can't figure out why the next piece of code only works when I set the Region Format to United States.
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"EEE, dd MMM yyyy HH:mm:ss zzz"];
NSDate *date = [dateFormatter dateFromString:currentFeedPubDate];
NSLog(@"%@", date);
Otherwise it returns "(null)".
Can anyone help me find out why ?