本文转载至 http://blog.csdn.net/xunyn/article/details/12975937
在iOS项目中用到解压缩,用的是ZipArchive,下载点击这里,ZipArchive是基于minizip的,但不支持多线程,封装的也不方便,然后就有了FastZipArchive,现在有一个粗糙的版本,下载点击:
一 FastZipArchive的简介如下:
1 基于ZipArchive和minizip的解压框架
2 支持多线程并发
3 拥有更快的解压缩速度(FAST_MODE下做了代码优化和使用内存目录树)
4 使用delegate和block回调方式
5 支持arc/non-arc
二 使用说明
FastZipArchive使用很简便:
1将FastZipArchive下的文件引入你的工程
2创建一个FZipRequest的请求
[cpp] view plaincopyprint?
- NSString *sourcePath = [[[NSBundle mainBundle]resourcePath]stringByAppendingPathComponent:@"1.zip"];
- NSString *desPath = @"1";
- FZipRequest *re1 =[[FZipRequest alloc]init];
- re1.zipFilePath = sourcePath;
- re1.unZipFilePath = desPath;
- re1.type = ZIP_TO_UNZIP;
- re1.mode = FAST_MODE;
- re1.delegate = self;
3将FZipRequest放入初始化好的FZipArchiveManager
[cpp] view plaincopyprint?
- _zipArchiveManager = [FZipArchiveManager defaultManager];
- [_zipArchiveManager addTask:request];
多线程快速解压FastZipArchive介绍
时间: 2024-10-18 05:10:58