我正在为 iOS 使用 SSZipArchive。是否有可能获取每个解压缩文件的文件名:
[SSZipArchive unzipFileAtPath:zipFile toDestination:docDir delegate:self];
我试图得到它
- (void)zipArchiveDidUnzipArchiveFile:(NSString *)zipFile entryPath:(NSString *)entryPath destPath:(NSString *)destPath
和
- (void)zipArchiveDidUnzipFileAtIndex:(NSInteger)fileIndex totalFiles:(NSInteger)totalFiles archivePath:(NSString *)archivePath unzippedFilePath:(NSString *)unzippedFilePath
但遗憾的是,这两个函数都没有被调用。