23 lines
508 B
Objective-C
23 lines
508 B
Objective-C
//
|
|
// 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
|