|
Samond Classes Library 1.2.1-RELEASE build 181
|
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: |
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) 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) 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 |
1.8.9.1