سؤال

I use ZipArchive to unzip my file in objective c. Is there a way of knowing the progress when it starts to unzip (like the percentage done etc.). Or I have to create a delegate to retrieve the progress by myself? Thanks !!

هل كانت مفيدة؟

المحلول

There's no way of doing that with ZipArchive. SSZipArchive has this feature implemented on a delegate method:

- (void)zipArchiveDidUnzipFileAtIndex:(NSInteger)fileIndex totalFiles:(NSInteger)totalFiles archivePath:(NSString *)archivePath fileInfo:(unz_file_info)fileInfo;
مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top