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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
//
//  TWTRDateFormatters.h
//
//  Created by Steven Hepting on 7/21/14.
//  Copyright (c) 2014 Twitter. All rights reserved.
//
 
#import <Foundation/Foundation.h>
 
@interface TWTRDateFormatters : NSObject
 
/**
 *  For use in parsing the Twitter API only.
 *
 *  @return formatter that handles Twitter's API format.
 */
+ (NSDateFormatter *)serverParsingDateFormatter;
 
/**
 *  For use in parsing the HTTP `date` header only
 *
 *  @return formatter that handles HTTP `date` header format
 */
+ (NSDateFormatter *)HTTPDateHeaderParsingFormatter;
 
/**
 *  For use in compact Tweet view when 24 hours < createdAt < current year.
 *
 *  @return formatter that emits abbreviated month and day e.g. Aug 5.
 */
+ (NSDateFormatter *)dayAndMonthDateFormatter;
 
/**
 *  For use in timestamp accessibility labels
 *
 *  @return formatter with NSDateFormatterLongStyle e.g. November 23, 1937
 */
+ (NSDateFormatter *)systemLongDateFormatter;
 
/**
 *  For use in compact Tweet view when current year < createdAt.
 *
 *  @return formatter that emits just the date without time e.g. MM/DD/YY
 */
+ (NSDateFormatter *)shortHistoricalDateFormatter;
 
@end