12345678910111213141516171819 |
- //
- // DateFunction.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/5/8.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface DateFunction : NSObject
- /**
- 计算某个时间距今天的天数
- */
- + (int)intervalSinceNow:(NSString *)theDate;
- @end
|