You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
508 B
22 lines
508 B
// |
|
// NSDate+TFExtension.m |
|
// TFReader |
|
// |
|
// Created by 谢腾飞 on 2020/12/10. |
|
// Copyright © 2020 xtfei_2011@126.com. All rights reserved. |
|
// |
|
|
|
#import "NSDate+TFExtension.h" |
|
|
|
@implementation NSDate (TFExtension) |
|
|
|
+ (NSString *)chindDateFormate:(NSDate *)update |
|
{ |
|
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init]; |
|
[dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"]; |
|
NSString *destDateString = [dateFormatter stringFromDate:update]; |
|
|
|
return destDateString; |
|
} |
|
|
|
@end
|
|
|