In a few of my own apps, i've needed the ability to unzip and unrar some files. Finding a good reliable library can be tough, so i'm going to recommend the ones that i've found and actually still use today. Unrar4iOS Note: this library just unarchives rar files, it will not actually create a rar file: Using this library is pretty simple, here's a snippet for unraring a file: Unrar4iOS* unrar = [[Unrar4iOS alloc] init]; if ([unrar unrarOpenFile:filePath]) { NSArray *fileNames = [unrar...(read more)
↧