关于YYYY 与 yyyy的坑。

今天线上报了一个很严重的问题,就是在上传服务端数据的时候,2017-12-31 全部上传的 2018-12-31了。
这才发现关于YYYY 与 yyyy的坑。
直接上连接吧.
NSDateFormatter 'YYYY' 和 'yyyy' 的区别
日期格式 YYYY-MM-dd 和 yyyy-MM-dd 有什么区别?

总结就是 两个计算年的方式不一样.有可能会出现对不上。 =
Also when using a date format string using the correct format is important.
@"YYYY" is week-based calendar year.
@"yyyy" is ordinary calendar year.
A common mistake is to use YYYY. yyyy specifies the calendar year whereas YYYY specifies the year (of “Week of Year”), used in the ISO year-week calendar. In most cases, yyyy and YYYY yield the same number, however they may be different. Typically you should use the calendar year.

你可能感兴趣的:(关于YYYY 与 yyyy的坑。)