diff --git a/SSZipArchive/SSZipArchive.h b/SSZipArchive/SSZipArchive.h index 35d70d8..c9e52eb 100755 --- a/SSZipArchive/SSZipArchive.h +++ b/SSZipArchive/SSZipArchive.h @@ -48,12 +48,12 @@ + (BOOL)createZipFileAtPath:(NSString *)path withContentsOfDirectory:(NSString *)directoryPath keepParentDirectory:(BOOL)keepParentDirectory withPassword:(NSString *)password; - (instancetype)initWithPath:(NSString *)path; -@property (NS_NONATOMIC_IOSONLY, readonly, getter = isOpen) BOOL open; +@property (NS_NONATOMIC_IOSONLY, readonly) BOOL open; - (BOOL)writeFile:(NSString *)path withPassword:(NSString *)password; - (BOOL)writeFolderAtPath:(NSString *)path withFolderName:(NSString *)folderName withPassword:(NSString *)password; - (BOOL)writeFileAtPath:(NSString *)path withFileName:(NSString *)fileName withPassword:(NSString *)password; - (BOOL)writeData:(NSData *)data filename:(NSString *)filename withPassword:(NSString *)password; -@property (NS_NONATOMIC_IOSONLY, readonly, getter = isClosed) BOOL close; +@property (NS_NONATOMIC_IOSONLY, readonly) BOOL close; @end