Ole is right, here is a sample code.
It:
NSDateFormatter* dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"yyyyMMdd'T'HHmmss'Z'"];
NSDate* date = [dateFormatter dateFromString:dateString];
should convert NSString to NSDate. To get the date format you want, you can change the dateFormat NSDateFormatters date. Like this:
[dateFormatter setDateFormat:@"dddd - MMMM dd,yyy"];
NSString* myNiceLookingDate = [dateFormatter stringFromDate:date];
[dateFormatter release];
This should work, although I have not tested it, but it will at least bring you closer to the result.
have fun, phil.