New to objective c and would love to use the objective-zip framework for unzipping and zipping files.
https://code.google.com/p/objective-zip/
Obviously when I compiled it, with arc, it gave me a lot of warnings. So I set the no arc flag for all the files inside of objective-zip folder (compiles fine now, no warnings).
My question is, since the example in the tarball uses manual memory management, should I change any of the files to use it with ARC (the objective-zip class files)?
or is this all I do?
Creating a ZIP file from a folder in documents directory - Objective C (ARC)
I'd also love someone to give a general guideline on how to approach these sorts of things.
Thanks!