osx - Objective c: How to know the progress of unzipping in using ZipArchive -
this question has answer here:
- how display file unzip progress? 3 answers
i use ziparchive unzip file in objective c. there way of knowing progress when starts unzip (like percentage done etc.). or have create delegate retrieve progress myself? !!
there's no way of doing ziparchive. ssziparchive has feature implemented on delegate method:
- (void)ziparchivedidunzipfileatindex:(nsinteger)fileindex totalfiles:(nsinteger)totalfiles archivepath:(nsstring *)archivepath fileinfo:(unz_file_info)fileinfo;
Comments
Post a Comment