NSDate+Common.h 311 B

123456789101112131415161718192021
  1. //
  2. // NSDate+Common.h
  3. // TIMChat
  4. //
  5. // Created by AlexiChen on 16/3/16.
  6. // Copyright © 2016年 AlexiChen. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface NSDate (Common)
  10. - (BOOL)isToday;
  11. - (BOOL)isYesterday;
  12. - (NSString *)shortTimeTextOfDate;
  13. - (NSString *)timeTextOfDate;
  14. @end