Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to unzip folder with in my iPhone application. Can any one help me on this. Thank you.

share|improve this question

3 Answers

up vote 17 down vote accepted

You need to use SSZipArchive in order to working with zip files.

Below line would unzip your zip file.

[SSZipArchive unzipFileAtPath:path toDestination:destination];
share|improve this answer
Works great! Thank you very much! – Francisco Salvador Jan 31 at 18:06

Download zipArchieve.zip file which used to unzip files in iphone. It contains contains following things

zipArchieve.zip click here to download

1.minizip folder 2.ZipArchive.h 3.ZipArchive.mm

Then just drag & drop ZipArchive folder in to xCode "Classes".

Then add framework libz.1.2.3.dylib.

That's it. My code get compile without any issue.

share|improve this answer
In Xcode 4.6 i was unable to find libz.1.2.3.dylib.But adding libz.1.1.3.dylib worked for me – Desert Rose Mar 1 at 7:49

USE ZipArchive

share|improve this answer
1  
can I use zipArchieve for ios 6 – vignesh kumar Oct 12 '12 at 13:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.