EpubExtractor
Example
To run the example project, clone the repo, and run pod install
from the Example directory first.
Requirements
- Swift: 4.0+
- XCode: 8.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 = //Destintion 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.