Up until today and the release 8.0.2 I have been using,
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"yyyyMMddhhmmss"];
NSString *keyDate = [dateFormatter stringFromDate:[NSDate date]];
and have been getting the result: 20140926125522
.
But after the update I am now getting: 2014092612:55:22
.
I am then unable to convert the keydate
to a NSNumber
as it now contains :
.
Is anyone else getting this?
** EDIT **
After reading the comments i decided to go into the device settings and in the time and settings section turned the Set Automatically to off and the issue went away. I then turned it back on and the issue did not reappear.
Thanks for all the help.