Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 954 Bytes

README.md

File metadata and controls

25 lines (17 loc) · 954 Bytes

KFEpubKit

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.