iOS
iOS

Reputation: 813

Is there a native zip or gzip decompression function in ios available?

I do know that there are some libraries (ZLib, MiniZip, etc.) to manage the task.

However, I am looking for an iOs or system library based solution. The URL transport protocol has embedded transport compression of GZIP, so it would be interesting if anybody managed to find a public accessible interface of the iOS library.

Upvotes: 3

Views: 2195

Answers (1)

hooleyhoop
hooleyhoop

Reputation: 9198

If you use NSURLConnection the data you receive will have been unzipped for you.

Upvotes: 4

Related Questions