zlib directly for uncompressing a zip folder for iphone
问题 Is it possible to use the bare minimum zlib available on iPhone to uncompress a zip of a folder. I don't want to go for a open source library, please enlighten me the difficulty or possibility of implementing one piece of code which can uncompress a zip file. 回答1: As JosephH said, you cannot use ZLib to deal with .zip files. But you can use the MiniZip library for that: http://www.winimage.com/zLibDll/minizip.html There's already an Objective-C wrapper, if you don't want to write yours: http: