Hello,
until now I used date formatter the following way with string like '2010-06-10T11:50:01+02:00':
NSDateFormatter* dateFormatter = [[[NSDateFormatter alloc] init] autorelease];
[dateFormatter setDateFormat:@"yyyy-MM-dd'T'HH:mm:ssZ"];
NSDate *from = [dateFormatter dateFromString:[NSString stringWithString:fromStr]];
That was working correctly. Now that I am testing on OS4.0, it's not working anymore. The NSDate created (from) is null.
Any explanation ?
Thanks a lot, Luc