KFEpubKit 0.0.6

KFEpubKit 0.0.6

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Dec 2014

Maintained by Rico Becker.



 
Depends on:
SSZipArchive>= 0
KissXML>= 0
 

KFEpubKit 0.0.6

  • By
  • Rico Becker

An Objective-C epub extracting and parsing framework for OSX and iOS.

Alt Example Screenshots

Usage

Load from a local URL …

NSURL *epubURL = [[NSBundle mainBundle] URLForResource:@"tolstoy-war-and-peace" withExtension:@"epub"];
NSURL *documentsURL = [[[NSFileManager defaultManager] URLsForDirectory:NSDocumentDirectory inDomains:NSUserDomainMask] lastObject];
self.epubController = [[KFEpubController alloc] initWithEpubURL:epubURL andDestinationFolder:documentsURL];
self.epubController.delegate = self;
[self.epubController openAsynchronous:YES];

… and add delegate methods

- (void)epubController:(KFEpubController *)controller didOpenEpub:(KFEpubContentModel *)contentModel
{
    NSLog(@"opened: %@", contentModel.metaData[@"title"]);
}

In-depth usage is explained in the included examples for both OSX and iOS.