Im having a hard tim getting the NSDateFormatter to give me a correct date format. I need it to look like this:
Mon, 04 Jan 2010 10:10:00 GMT
But I am getting:
Mon, 04 Jan 2010 10:10:00 GMT+00:00
Using the format string:
EEE',' dd' 'MMM' 'yyyy HH':'mm':'ss z
No matter what value for timezone I use, the +00:00 appears to be stuck on the end. I realize I could just remove it form the resulting string, but that feels like cheating.
So how do I get the date formatter to not include a time offset value?