口袋版本的一折买

DateFunction.h 304B

12345678910111213141516171819
  1. //
  2. // DateFunction.h
  3. // YouHuiProject
  4. //
  5. // Created by 小花 on 2018/5/8.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface DateFunction : NSObject
  10. /**
  11. 计算某个时间距今天的天数
  12. */
  13. + (int)intervalSinceNow:(NSString *)theDate;
  14. @end