NSDate+YOHO.h 779 Bytes
//
//  NSDate+YOHO.h
//  YH_Mall
//
//  Created by Haizi on 16/2/23.
//  Copyright © 2016年 YOHO. All rights reserved.
//

#import <Foundation/Foundation.h>

extern NSTimeInterval const kTimeIntervalHour ;
extern NSTimeInterval const kTimeIntervalDay;

@interface NSDate (YOHO)

/**
 @brief  将字符串按照指定格式输出为日期(若format为nil ,默认为 yyyy.MM.dd HH: mm: ss 格式)
 
 @param format 日期格式
 
 @return 日期字符串
 
 @since 3.1
 */
- (NSString *)yh_stringRepresentationWithDateFormat:(NSString *)format;

/**
 @brief  输入时间戳, 输出距离现在的间隔
 
 @param paramInterval 时间戳
 
 @return 时间间隔字符串
 
 @since 3.1
 */
+ (NSString *)yh_dateIntervalStringWithInterval:(NSTimeInterval)paramInterval;

@end