码迷,mamicode.com
首页 > 移动开发 > 详细

iOS SSZipArchive

时间:2015-01-19 22:33:33      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:

SSZipArchive使用详解

注意1:

[SSZipArchive createZipFileAtPath:zippedPath withFilesAtPaths:inputPaths];  

withFilesAtPaths后跟的参数是数组,如果要对mainBundle某种文件格式打包压缩,可以用下面的代码:

NSArray *inputsPaths = [[NSBundle mainBundle] pathsForResourcesOfType:@"png" inDirectory:nil];

 

注意2:最好将压缩和解压缩放在子线程中

    dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{

            // 压缩或解压操作

    });

 

iOS SSZipArchive

标签:

原文地址:http://www.cnblogs.com/oumygade/p/4234801.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!