objective-c中的zip操作

来源:互联网 发布:风风果实 数据 编辑:程序博客网 时间:2024/05/18 00:19

首先要导入libz.dylib

然后下载并导入(Add files to)这个第三方组件到工程中:ziparchive

解压缩的代码:

-(void) unzipFile{    YLSUserData *userData = [YLSUserDataUtil readUserData];    NSString *imagesPath = [YLSGlobalUtils getImagesDirPath];    NSString *enterprisePath = [imagesPath stringByAppendingPathComponent:[userData enterpriseId]];    NSString *zipFilePath = [enterprisePath stringByAppendingString:@"/images.zip"];// documents/images/:enterpriseId/images.zip        NSString* unzipto = enterprisePath;// 解压缩到documents/images/:enterpriseId/        ZipArchive* zip = [[ZipArchive alloc] init];    if([zip UnzipOpenFile:zipFilePath]) {        BOOL result = [zip UnzipFileTo:unzipto overWrite:YES];        if(NO == result) {            // 处理解压错误的异常情况        }        [zip UnzipCloseFile];    }}

然后由于我的环境是ios7 + xcode5,所以第三方组件中调用了内存回收的老代码,编译无法通过,手动将报错的代码删掉,如:

[dc release];[gregorian release];

然后就可以了


原创粉丝点击