DUAReader是电子书阅读器,支持txt、epub(图文混排)、纯Swift编写、自动提取章节、支持翻页模式切换、更改背景、字体字号,章节跳转等各种常用功能。
DUAReader也全面支持Objective-C,兼容Objective-C的版本将在fitOC分支单独维护,获取方式:
克隆代码到本地gitcloehttps://github.com/othot/DUAReader.git
切换到fitOC分支gitcheckout-bfitOCorigi/fitOC
示例 //txt示例 mreader=DUAReader()letcofiguratio=DUACofiguratio.iit()cofiguratio.backgroudImage=UIImage.iit(amed:"backImg.jpg")mreader.cofig=cofiguratiomreader.delegate=selfself.preset(mreader,aimated:true,completio:il)letbookPath=Budle.mai.path(forResource:"郭黄之恋",ofType:"txt")mreader.readWith(filePath:bookPath!,pageIdex:1) //epub示例 mreader=DUAReader()letcofiguratio=DUACofiguratio.iit()cofiguratio.backgroudImage=UIImage.iit(amed:"backImg.jpg") cofiguratio.bookType=.epub//默认TXT类型 mreader.cofig=cofiguratiomreader.delegate=selfself.preset(mreader,aimated:true,completio:il)letepubPath=Budle.mai.path(forResource:"每天懂一点好玩心理学",ofType:"epub")mreader.readWith(filePath:epubPath!,pageIdex:1)
评论