试图证明我可以转换NSString
为NSDate
. 创建一个NSDate
,把它变成一个NSString
,然后再变成一个NSDate
。日期作为字符串看起来不错,但是当我将其转换回来时,我总是会得到一些日期,例如 12/25/2011 .... 有人能发现我的错误吗?
NSDateFormatter *df = [[NSDateFormatter alloc] init];
[df setDateFormat:@"dd/MM/YY hh:mm a"];
NSDate* b = [[NSDate alloc] init];
NSString* f = [df stringFromDate:b]; // has the current date and time
NSDate* dt =[df dateFromString:f]; // 12/25/2011 - where does it get this?