LoginSignup
0
0

More than 5 years have passed since last update.

NSDateFormatterで日にちが一週間ずれる

Last updated at Posted at 2018-04-24
NSDateFormatter *fmt = [NSDateFormatter new];
[fmt setDateFormat:@"YYYY-01-01 00:00:00 0000"];
[fmt setTimeZone:[NSTimeZone timeZoneForSecondsFromGMT:0]];
NSString *dateStr = [fmt stringFromDate:[NSDate date]];
NSDate *minDate = [fmt dateFromString:dateStr];

とした際にminDatが一週間ずれることがあった。

解決策

YYYY を yyyyに変更
Y(大文字)はその週の年、つまり1月1日が週の後半(厳密には木曜日以降)だったら、その週は前年の週と見なされる。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0