I have an array with 900+ string objects...
When i format this strings into dates, there is 1 date that can't be formatted, giving me a null value...
i've tested in another blank Xcode project and it was bugged too..
Can anyone pls check if this is an error from my machine or Xcode ? The date is 02/11/2004 (dd/mm/yyyy).
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
[formatter setDateFormat:@"dd/MM/yyyy"];
NSLog([NSString stringWithFormat:@"%@", [formatter dateFromString:@"02/11/2004"]]);