mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-31 21:41:33 +00:00
18 lines
349 B
C
18 lines
349 B
C
![]() |
//
|
||
|
// NSDate+OSK_ISO8601.h
|
||
|
// Overshare Kit
|
||
|
//
|
||
|
//
|
||
|
// Copyright (c) 2013 Overshare Kit. All rights reserved.
|
||
|
//
|
||
|
|
||
|
@import Foundation;
|
||
|
|
||
|
@interface NSDate (OSK_ISO8601)
|
||
|
|
||
|
+ (NSDate *)osk_dateFromISO8601string:(NSString *)iso8601string;
|
||
|
+ (NSDateFormatter *)osk_ISO8601stringDateFormatter;
|
||
|
+ (NSString *)osk_ISO8601stringFromDate:(NSDate *)date;
|
||
|
|
||
|
@end
|