Reputation: 13
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.
Upvotes: 0
Views: 402
Reputation: 14815
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.
Upvotes: 1