Samond Classes Library 1.2.6-STABLE build 219
|
Standard class NSDate functionality extending category. More...
#import <NSDate+SCDate.h>
Creating Dates | |
(instancetype) | + dateWithCoder: |
(instancetype) | + dateWithContentsOfSerializedFile: |
(instancetype) | + dateWithDataDictionary: |
(instancetype) | + dateWithDataDictionaryFromFile: |
(instancetype) | + dateWithStream: |
(instancetype) | + dateWithFileStream: |
(instancetype) | + dateWithData: |
(instancetype) | + dateWithContentsOfFile: |
(instancetype) | + dateWithContentsOfURL: |
(instancetype) | + dateWithContentsOfURLString: |
Standard class NSDate functionality extending category.
Declares the additional methods for add into the standard class NSDate the additional functionality, such as dictionaries, collections and streans support and so on.
+ (instancetype) dateWithCoder: | (NSCoder *) | coder |
Returns a date created by using the data from the specified coder.
coder | - the source coder |
+ (instancetype) dateWithContentsOfFile: | (NSString *) | path |
Returns a date created by using the file with the specified path.
path | - the path to the source file |
+ (instancetype) dateWithContentsOfSerializedFile: | (NSString *) | path |
Returns a date created by using the data from the serialized file with the specified path.
path | - the path to the serialized file |
+ (instancetype) dateWithContentsOfURL: | (NSURL *) | url |
Returns a date created by using the specified URL.
url | - the source URL |
+ (instancetype) dateWithContentsOfURLString: | (NSString *) | urlString |
Returns a date created by using the data from the URL with the specified string.
urlString | - the string of the source URL |
+ (instancetype) dateWithData: | (NSData *) | data |
Returns a date created by using the specified data object.
data | - the source data object |
+ (instancetype) dateWithDataDictionary: | (NSDictionary *) | dictionary |
Returns a date created by using the data from the specified data dictionary.
dictionary | - the source data dictionary |
+ (instancetype) dateWithDataDictionaryFromFile: | (NSString *) | path |
Returns a date created by using the data from the dictionary file with the specified path.
path | - the path to the source dictionary file |
+ (instancetype) dateWithFileStream: | (NSString *) | path |
Returns a date created by using the data from the file stream with the specified path.
path | - the path to the source file stream |
SCStreamException | - stream error detected |
SCSystemException | - system error detected |
+ (instancetype) dateWithStream: | (SCStream *) | stream |
Returns a date created by using the data from the specified stream.
stream | - the source stream |
SCStreamException | - stream error detected |
SCSystemException | - system error detected |