Questions tagged [ssziparchive]

ZipArchive is a simple utility class provided for zipping and unzipping files on iOS and Mac programmatically.

SSZipArchive ZipArchive is a simple utility class for zipping and unzipping files on iOS and Mac.

  • Unzip zip files
  • Unzip password protected zip files
  • Create new zip files
  • Append to existing zip files
  • Zip files
  • Zip-up NSData instances. (with a filename)

Project git repository

62 questions
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

SSZipArchive does not open document Objective C

I can't understand what happened. In my project when I try to convert file from zip to some files it does not work. When I did research I found that "unzOpenInternal" does not open file. I used this library in other projects. All worked well. But…
0
votes
3 answers

Linking Error after migrating IOS Project to Xcode 7.3.1 (Simulator and IPad)

I have an IOS-App SWIFT Project on Xcode 7.2 on my older yosemite machine, which works and builds fine. I have a new MAC running "El Capitan" with Xcode 7.3.1 I have migrated my project to the new machine by just copying: the project folder, all…
mcfly soft
  • 11,289
  • 26
  • 98
  • 202
0
votes
1 answer

Zip NSData directly with SSZipArchive not working

I try to save nsdata as a zipped file like: let zipArch = SSZipArchive(path: "/var/mobile/Containers/Data/Application/5F3152AA-F07A-4AD2-98A9-22051C524AF2/Library/") print(zipArch.writeData(andCryptedData, filename: "aFileName.zip", withPassword:…
kurtanamo
  • 1,808
  • 22
  • 27
0
votes
1 answer

Unzipping Epub in swift

I need to unzip a .epub file in swift to read the data myself entirely. I know how to parse the output of an ePub if I can get it (I've written a working example in python), but SSZipArchive apparently will not unzip .epubs. It does, however, works…
Ethan Kay
  • 657
  • 6
  • 24
0
votes
1 answer

no such module ssziparchive , after using cocoa pods

I was trying to install ssziparchive framework using cocoa pods and faced the following problem: after appearingly successful install I get the error, that in import SSZipArchive no such module 'SSZipArchive' here is the pod file: platform…
Anton
  • 155
  • 13
0
votes
1 answer

UILabel reload text

I'm using the popular class calle SSZipArchive to unzip a file, concretely this method: + (BOOL)unzipFileAtPath:(NSString *)path toDestination:(NSString *)destination progressHandler:(void (^)(NSString *entry, unz_file_info zipInfo, long…
peig
  • 418
  • 3
  • 11
0
votes
1 answer

Can't include Objective C Files into Project?

I want to include an Objective-C project (https://github.com/soffes/ssziparchive) into my Swift Project so that I can include the SSZipArchive into my project. I need this so I can unzip a file. As included in the instructions on the Github, I…
user1871869
  • 3,317
  • 13
  • 56
  • 106
0
votes
1 answer

Unzipping .sqlite file using SSZipArchive OBJ-C

I have a requirement of downloading .zip file from server and use it to project after extracting it. I have successfully downloaded the .sqlite file and i am able to extract it using right click(manually) but when i am trying to extract it using…
Nikh1414
  • 1,238
  • 2
  • 19
  • 35
0
votes
2 answers

error with ssziparchive

I would like to export a ZIP file it is a sound file. Then I would like to control this sound file using Push Notification. When I load the sound file directly into Xcode it works. However, I export the file using a ZIP file it does not find the…
0
votes
2 answers

how to zip empty folders in File manager in iOS?

I am developing a app like file manager. In this i have created zip folder using any existing folder, it works perfectly fine. For this i have used SSZipArchive API. After zip i send it through mail. It's working fine too. Now when i try to zip any…
Sagar
  • 105
  • 1
  • 1
  • 5
0
votes
1 answer

How to list unknown files when unzipping in iOS?

I've started using ZipArchive because I have a testing app that displays images from a server where the content is often changing. I want the app to sort and display the images, without having an explicit list of the new image names. (Or maybe I…
Rick_CBR929RR
  • 197
  • 2
  • 15
0
votes
0 answers

How to unzip file in ios

I try to download contents from App store, I download it successfully, now I try to unzip the downloaded file using SSZipArchive. my content file contains video file. (This is the way I upload content file to App Store steps I did Here is my code to…
Ramesh
  • 105
  • 3
  • 14
0
votes
3 answers

Undefined symbols for architecture armv7: "_OBJC_CLASS_$_SSZipArchive"

I am try using Extractzipfile plugin at this: https://github.com/phonegap/phonegap-plugins/tree/master/iOS/ExtractZipFile But when i compiler with Xcode 4.6.1 in sdk 6.1 so it throws an error: Undefined symbols for architecture i386: …
Lê Huy
  • 195
  • 1
  • 4
  • 13
0
votes
1 answer

Undefined symbols for architecture armv7 SSZipArchive

Undefined symbols for architecture armv7: "_OBJC_CLASS_$_SSZipArchive", referenced from: objc-class-ref in LoginVC.o ld: symbol(s) not found for architecture armv7 clang: error: linker command failed with exit code 1 (use -v to see…
kurtanamo
  • 1,808
  • 22
  • 27