20 lines
271 B
Objective-C
20 lines
271 B
Objective-C
//
|
|
// NSDate+Category.h
|
|
// YSDTrucksProject
|
|
//
|
|
// Created by 党凯 on 2020/8/20.
|
|
// Copyright © 2020 党凯. All rights reserved.
|
|
//
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
|
|
@interface NSDate (QX)
|
|
+ (NSString *)timeStringWithTimeInterval:(NSString *)timeStr;
|
|
@end
|
|
|
|
|