我希望将日期格式从“ 2013-01-21 11:55:00 ”更改为“ 2013 年 1 月 21 日 5:30 AM ”。
我尝试了下面的代码。但它给出了一个固定的日期。
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateStyle:NSDateFormatterMediumStyle];
[dateFormatter setTimeStyle:NSDateFormatterMediumStyle];
NSDate *myDate = [NSDate dateWithTimeIntervalSinceReferenceDate:162000];
NSLog(@"%@",[dateFormatter stringFromDate:myDate]);
上面的代码给出了恒定的输出:2001 年 1 月 3 日 2:30:00 AM
但就我而言,日期是动态的。