Roll back changes made since 0.3.3 which was last known working version, move C libs around to get working in Pods 0.39 space, add Swift example, add Objective-C example, move tests and ensure they pass

This commit is contained in:
Sean Soper
2015-10-23 14:15:31 -04:00
parent aa307f46db
commit 5a422fc833
82 changed files with 3023 additions and 2310 deletions
@@ -0,0 +1,9 @@
#import <Foundation/Foundation.h>
#import <SSZipArchive/SSZipArchive.h>
/**
* Test delegate by collecting its calls
*/
@interface CollectingDelegate : NSObject <SSZipArchiveDelegate>
@property(nonatomic, retain) NSMutableArray *files;
@end