EMDateHelper.h 589 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // EMDateHelper.h
  3. // ChatDemo-UI3.0
  4. //
  5. // Created by XieYajie on 2019/2/12.
  6. // Copyright © 2019 XieYajie. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #define D_MINUTE 60
  10. #define D_HOUR 3600
  11. #define D_DAY 86400
  12. #define D_WEEK 604800
  13. #define D_YEAR 31556926
  14. NS_ASSUME_NONNULL_BEGIN
  15. @interface EMDateHelper : NSObject
  16. + (NSDate *)dateWithTimeIntervalInMilliSecondSince1970:(double)aMilliSecond;
  17. + (NSString *)formattedTimeFromTimeInterval:(long long)aTimeInterval;
  18. + (NSString *)formattedTime:(NSDate *)aDate;
  19. @end
  20. NS_ASSUME_NONNULL_END