Archiver 1.0.4

Archiver 1.0.4

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Apr 2016

Maintained by Ravi.



Archiver 1.0.4

Summary

This class will read and write objects that conform to the NSCoding protocol to disk.

AutoEncodeDecode provides persistance to any NSObject class with least effort.

Sample Code

NSArray *nameWriteArray = @[@"Ravi", @"Manish"];
[Archiver createFile:nameWriteArray aFileName:@"Name_File"];

NSArray *nameReadArray = [Archiver readFile:@"Name_File"];
NSLog(@"%@", [nameReadArray componentsJoinedByString:@" : "]);

There is more in Example project.

Usage

To run the example project, clone the repo, and run pod install from the Example directory first.

Installation

Author

Ravi Prakash Sahu, [email protected]

License

Archiver is available under the MIT license. See the LICENSE file for more info.

Inspiration

NSObject-NSCoding