Files
mier_ios/SweetParty/Expand/Category/NSDate+Extension.h

32 lines
429 B
C
Raw Normal View History

2025-08-11 10:43:19 +08:00
//
// NSDate+HKExtension.h
// 百思不得姐--001
//
// Created by Mask on 16/7/3.
// Copyright © 2016年 Mask. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface NSDate (Extension)
/** 求出时间差值 */
-(NSDateComponents *)dateFrom:(NSDate *)from;
/**
*
*/
-(BOOL)isThisYear;
/**
*
*/
-(BOOL)isToday;
/**
*
*/
-(BOOL)isYesterday;
@end