修复编辑个人资料页日期不对问题

This commit is contained in:
chenguilong
2022-08-08 10:39:20 +08:00
parent 2c16859dde
commit d74c7bf12d
3 changed files with 3 additions and 4 deletions

View File

@@ -107,7 +107,7 @@
- (NSDateFormatter *)dateFormatter {
if (!_dateFormatter) {
_dateFormatter = [[NSDateFormatter alloc] init];
_dateFormatter.dateFormat = @"YYYY-MM-dd";
_dateFormatter.dateFormat = @"yyyy-MM-dd";
}
return _dateFormatter;
}