To run the example project, clone the repo, and run pod install
from the Example directory first.
- Swift: 4.2+
- XCode: 9.0+
EpubExtractor is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod "EpubExtractor"
let epubExtractor = EPubExtractor()
epubExtractor.delegate = self
let destinationURL = //Destination URL
epubExtractor.extractEpub(epubURL: epubURL, destinationFolder: destinationURL)
public protocol EpubExtractorDelegate {
func epubExactorDidExtractEpub(_ epub: Epub)
func epubExtractorDidFail(error: Error?)
}
f-meloni, franco.meloni91@gmail.com
EpubExtractor is available under the MIT license. See the LICENSE file for more info.