LZMA Decompression with Objective C

388 Views Asked by At

How do I decompress lzma files with objective c? I have the information on decompressing the files, such as header size, but I don't know how to do the process.

1

There are 1 best solutions below

0
On

You'll need to use an lzma decompression library such as this one: http://7-zip.org/sdk.html

That one is available in C, so you can use it directly in your Objective-C application.