0

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.

KyleCool1
  • 13
  • 3
  • You can find the github link for an Objc port here: http://stackoverflow.com/a/12660653/763355 – MoDJ Dec 19 '15 at 01:03

1 Answers1

1

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.

Ben Baron
  • 14,496
  • 12
  • 55
  • 65