Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Best approch for creating ePub reader similar to iBook or Stanza application [closed]

I am planning to develop a ePub reader for iOS devices. I don't want to use webView for this. In this application, I want features like iBook or stanza app. I want to know, which approch is used in developing Stanza app.

like image 713
iOS Develover Avatar asked Nov 17 '10 12:11

iOS Develover


People also ask

Does iBooks read EPUB?

Can I open a book in Apple Books (formerly iBooks)? Apple users can read Bookshare books in the EPUB format on their computers and mobile devices using Apple's Books app (formerly called iBooks).

What app is used to read EPUB files?

1. Moon+ Reader [Android] Moon+ Reader is one of the most popular eBook reader apps for Android that comes with support for a wide range of file formats, such as EPUB, PDF, DJVU, AZW3, MOBI, HTML, MD, and more.


2 Answers

Books in ePub format are HTML with some meta-data. Different generators create differently formatted HTML. The work needed to implement a parser capable of displaying all ePub is a mammoth task! If you do not want to use a web view then your project is doomed from the start.

Stanza, Apple's iBooks, my own ePub reader for iPad, and any other ePub reader I know of all use a standard Web view as the basis. On top of that you need allot of CSS and Javascript to tweak all mutations of ePubs there is.

like image 117
PeyloW Avatar answered Oct 13 '22 01:10

PeyloW


Your approach should be to learn how to parse the ePub data and bundle that with an app that displays the content as well as handles all the other features. Probably want to look at Core Text.

like image 28
bbarnhart Avatar answered Oct 13 '22 02:10

bbarnhart