epubExtractor
epubExtractor copied to clipboard
iOS library to extract and parse ePubs
EpubExtractor
Example
To run the example project, clone the repo, and run pod install from the Example directory first.
Requirements
- Swift: 4.2+
- XCode: 9.0+
Installation
EpubExtractor is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod "EpubExtractor"
Usage
let epubExtractor = EPubExtractor()
epubExtractor.delegate = self
let destinationURL = //Destination URL
epubExtractor.extractEpub(epubURL: epubURL, destinationFolder: destinationURL)
EpubExtractorDelegate
public protocol EpubExtractorDelegate {
func epubExactorDidExtractEpub(_ epub: Epub)
func epubExtractorDidFail(error: Error?)
}
Author
f-meloni, [email protected]
License
EpubExtractor is available under the MIT license. See the LICENSE file for more info.