Questions tagged [objectivezip]

15 questions
3
votes
0 answers

IOS Objective-zip password wrong

I use Objective-zip to zip some files with password and generate the zip file successfully. However, when I upzip the file manually, it said that my password is wrong, is there any way to deal with it? does it cause by crc32 or other thing? -(void)…
user2557508
  • 31
  • 1
  • 2
3
votes
1 answer

iOS Objective-Zip corruption issues

I am using flyingdolphinstudio's Objective-Zip which is an Objective-C zipping library. I am using this to zip a .txt file following the answer given in this question. For my case, I do not have an array to cycle through so just for a single file I…
Michael M
  • 1,034
  • 2
  • 8
  • 21
2
votes
4 answers

Duplicate symbol Error : Flurry SDK 5.0.0 with Objective-Zip, ZLib, MiniZip

Objective-Zip, ZLib and MiniZip compilation with Flurry 5.0.0 fails with 34 duplicate symbols for architecture i386. duplicate symbol reported for _zipOpen , _unztell, _unzSetOffset, _unzClose etc. The same project compiles fine when Flurry 4.3.2…
danfelabs
  • 1,873
  • 1
  • 18
  • 23
1
vote
1 answer

Getting exception while creating zip file

I want to convert my log file into zip file. So for that I'm using Objective-Zip. But I'm getting exception 2018-08-02 11:53:57.901192+0530 Aglive[1076:511096] *** Terminating app due to uncaught exception 'OZZipException', reason: 'Can't open…
user3452
  • 349
  • 5
  • 20
1
vote
0 answers

How to password protect a zip file with objective-zip and CRC32?

I am trying to password-protect a zip file I create with Objective-zip. It requires a crc32 from me, but I just do not seem to be able to make it work, everytime I unzip it (with "The Unarchiver"), I get 'wrong password' etc. I have looked around…
chrisnolten
  • 101
  • 1
  • 1
  • 9
1
vote
1 answer

Objective Zip Password & CRC

I'm using Objective Zip to zip-up some files on my iOS app. I want to protect them with a password and note the call... - (ZipWriteStream *) writeFileInZipWithName:(NSString *)fileNameInZip fileDate:(NSDate *)fileDate…
Fittoburst
  • 2,215
  • 2
  • 21
  • 33
1
vote
2 answers

Objective Zip archives aren't opened by ArchiveUtility.app

I'm using ObjectiveZip library (which is a wrapper for MiniZip) in my iOS app. My app sends .zip archives to server, where they are processed manually by moderator. Here's my code for creating an archive: NSString * zipfile = [Result…
Yury Pogrebnyak
  • 4,093
  • 9
  • 45
  • 78
1
vote
1 answer

Decompress gzip compressed file on iOS (using Objective-Zip or SSZipArchive)

I am looking for an easy way to decompress a gzip-compressed file on iOS. I found the libs "SSZipArchive" and "Objective-Zip" but I can't get neither to work. My impression is that both try to handle my file as a zip archive and therefore fail to…
Jens
  • 6,243
  • 1
  • 49
  • 79
0
votes
1 answer

how to zip and email a file using objective c?

I need to zip my log file and email it. I'm using Objective-zip for zipping my file. And this is my code -(void)mailLogFile { if ([MFMailComposeViewController canSendMail]) { NSDictionary *user = [[DBHelper getSharedInstance]…
user3452
  • 349
  • 5
  • 20
0
votes
2 answers

Objective-Zip method not available to Swift class

I am using Objective-Zip in a mixed Swift/Objective-C project, and I cannot get currentFileInZipInfo() to work. It isn't available in autocomplete, and if I try to type it manually I get an error Value of type 'ZipFile' has no member…
John Montgomery
  • 6,739
  • 9
  • 52
  • 68
0
votes
0 answers

Linker error occurs while building the project from git in iOS

I have created an app that uses objective-zip 1.0.2 . And I have checked in the project to the git as well . When I download the project as a zip from the git and run and build the project , the archive gets created . But when I try to build the…
AnxiousMan
  • 578
  • 2
  • 8
  • 25
0
votes
1 answer

SSZiparchive not getting removed from the project

I have developed an iOS application using objective-c that uses a text file to be converted to zip. I initially tried using SSZipArchive and added the SSZipArchive to the project directory . Later , I changed to objective-zip and it works perfectly.…
AnxiousMan
  • 578
  • 2
  • 8
  • 25
0
votes
0 answers

Minimum deployment target for objective-zip

Can anyone tell me what is the minimum deployment target required for Objective-zip 1.0.2. They have mentioned as iOS 5.0 in their home site, but i have the deployment target set to iOS 5.1.1 and I get the error as specs found but Objective-zip…
AnxiousMan
  • 578
  • 2
  • 8
  • 25
0
votes
1 answer

Objective-Zip: Store content when unzip file (iOS)

I just want to create a file with the data of unzipped file in iOS. I am using the Objective-Zip library, and I can zip files rightly. Now, I am trying to extract the files of this zip file. ZipFile *unzipFile= [[ZipFile alloc]…
mzurita
  • 690
  • 1
  • 14
  • 33
-1
votes
1 answer

How detect ZipException with Objective-Zip?

I use Objective-Zip from github - https://github.com/flyingdolphinstudio/Objective-Zip If zip file broken i have this: Terminating app due to uncaught exception 'ZipException', reason: 'Can't open And app crash after that. How to get the error but…
DimonDeveloper
  • 137
  • 1
  • 13