Reputation: 498
please help me to understand that which library will be the best to extract .tar files in an iphone application.
on googling i have found in few posts that libacrchive can be used but another posts says that it will be problematic if you go to upload your app on App store.
Please suggest a suitable library for this purpose.
Upvotes: 0
Views: 1073
Reputation: 3485
I write a lib exactly for that: extracting standard tar file without zlib compression.
https://github.com/mhausherr/Light-Untar-for-iOS
My lib take just few lines when libarchive heights 4.7Mb. Full explanation here: http://blog.octo.com/en/untar-on-ios-the-pragmatic-way/
Upvotes: 1