Files
2017-09-14 00:31:27 +08:00

10 lines
242 B
Objective-C

#import <Foundation/Foundation.h>
#import "SSZipArchive.h"
/**
* Test delegate by collecting its calls
*/
@interface CollectingDelegate : NSObject <SSZipArchiveDelegate>
@property(nonatomic, retain) NSMutableArray<NSString *> *files;
@end