Samond Classes Library 1.2.6-STABLE build 219
NSDate+SCDate.h
Go to the documentation of this file.
1 //
2 // NSDate+SCDate.h
3 // scl
4 //
5 // Created by Viacheslav Smolensky on 05.06.14.
6 // Copyright (c) 2007 - 2018 by Samond Development Corporation. All rights reserved.
7 //
8 
23 #import <Foundation/Foundation.h>
25 
26 #pragma mark -
27 #pragma mark Class Constants
28 
37 #define NSDateClass @"NSDate"
38 
39 
55 @interface NSDate(SCDate)
56 
57 #pragma mark -
58 #pragma mark Creating Dates
59 + (instancetype)dateWithCoder:(NSCoder *)coder;
60 + (instancetype)dateWithContentsOfSerializedFile:(NSString *)path;
61 + (instancetype)dateWithDataDictionary:(NSDictionary *)dictionary;
62 + (instancetype)dateWithDataDictionaryFromFile:(NSString *)path;
63 + (instancetype)dateWithStream:(SCStream *)stream;
64 + (instancetype)dateWithFileStream:(NSString *)path;
65 + (instancetype)dateWithData:(NSData *)data;
66 + (instancetype)dateWithContentsOfFile:(NSString *)path;
67 + (instancetype)dateWithContentsOfURL:(NSURL *)url;
68 + (instancetype)dateWithContentsOfURLString:(NSString *)urlString;
69 
70 @end
Standard class NSDate functionality extending category.
Definition: NSDate+SCDate.h:55
Category NSObject(SCObject) header file.
Abstract parent class of the stream classes hierarchy.
Definition: SCStream.h:224