Hide file labels in Swift example until unzipped. Remove file names to just be random test files vs "News Headlines" that were added by a contributor. Another shot at fixing warning messages.

This commit is contained in:
Joshua Hudson
2017-01-23 16:06:47 -08:00
parent 2ca4264756
commit f87799f92c
16 changed files with 60 additions and 47 deletions
@@ -23,7 +23,7 @@
@implementation CancelDelegate
- (void)zipArchiveDidUnzipFileAtIndex:(NSInteger)fileIndex totalFiles:(NSInteger)totalFiles archivePath:(NSString *)archivePath fileInfo:(unz_file_info)fileInfo
{
_numFilesUnzipped = (int)(fileIndex + 1);
_numFilesUnzipped = (int)fileIndex + 1;
}
- (BOOL)zipArchiveShouldUnzipFileAtIndex:(NSInteger)fileIndex totalFiles:(NSInteger)totalFiles archivePath:(NSString *)archivePath fileInfo:(unz_file_info)fileInfo
{