I am using NSURLConnection to download gzipped JSON from server. Is it possible to un-gzip received data with libraries that are part of iOS (Cocoa touch framework)?
I am somehow confused since a lot of people are pointing me to download some third party libraries?
I am using NSURLConnection to download gzipped JSON from server. Is it possible to
Share
I don’t know for sure if there is built-in iOS functionality for this, but I know that a solid approach is to use ZipArchive. Also see this SO question, and this one.