hank
2017-06-14 a0a84333e64f1e94ae9d0f69545037c60e781842
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//
//  TWTRDateFormatter.h
//  TwitterKit
//
//  Created by Joey Carmello on 3/28/15.
//  Copyright (c) 2015 Twitter. All rights reserved.
//
 
#import <Foundation/Foundation.h>
 
@interface TWTRDateFormatter : NSObject
 
/**
 *  Returns the formatted elapsed time string base on the given date.
 *
 *  Logic:
 *      - Relative timestamp for anything less than 24 hours
 *      - Abbreviated month and day format (Aug 5), and no year for anything within the current year
 *      - MM/DD/YY (10/5/14) for anything beyond the current year
 *
 *  @param date The date object to calculate elapsed time against.
 *
 *  @return Formatted string of the elapsed time from the given date.
 */
+ (NSString *)elapsedTimeStringSinceDate:(NSDate *)date;
 
@end