I am trying to develop an iPhone application to read ePub files. Is there any framework available to develop this? I have no idea about how to read this file format. I tried to parse a sample file with .epub extension using NSXML Parser, but that fails.
|
The EPUB format brings together a bunch of different specifications / formats:
The specs look a bit daunting but actually once you've got the basics (unzipping, parsing XML) down it's not particularly difficult or complex. You'll need to work out how to download the EPUB, to unzip it somewhere, to parse the manifest and then to display the relevant content. Some pointers if you're just starting out: To display content just use a Here's a high level step by step for your code: 1) create a view with a 2) download the EPUB file 3) unzip it to a subdirectory in your app's documents folder using the zip library, linked above 4) parse the XML file at 5) In this XML, find the first "rootfile" with media-type 6) parse the OPF file (also XML) 7) now you need to know what the first chapter of the book is. a) each b) Look at the first c) this is the the file of the first chapter to show the user. Work out what the full path is (hint: it's wherever you unzipped the zip file to in (3) plus the base directory of the OPF file in (6)) 8) create an You'll need to implement forward / backward buttons or swipes or something so that users can move from one chapter to another. Use the |
|||||||||||||||||
|
|
Apparently EPUB is "just" an XML format, so if you have an xml parser and the spec it should be okay. Plus a little tuto? Have fun! EDIT: you could also read some code here, this is for generating epub, not reading them but the code may be useful. EDIT again: And see links to related question in the right sidebar, there are some links in the answers to free ebook reader which support ePub. EDIT 3: You should add a comment when you edit your question so people who answer you can continue the discussion (if you don't comment we're not noticed of your edit). So, The parsing fail because you didn't read the spec or related questions on Stack Overflow... *.epub file are a zipped folder containing XML file(s), not plain xml. |
||||
|
|
|
I read through this tutorial once (free registration required, sorry) and it gave me a great introduction to ePub. deverloperWorks tutorial here I highly suggest you look at some of the XML processing libraries. If you just want to get specific information out of the XML file, then you can pick the right parsing strategy. |
|||
|
|
|
|||
|
|
|
I'm playing arround to create an epub-framework for iphone apps. At the moment (I really just startet) i can generate a title page with links to the chapters. My approach is
Right now I'm looking into pageflip, some kind of gui and minor usability issues (save the current page beingviewed) I hope that give's you an idea on how to start |
|||
|
|
Jonathan Wight (schwa) has developed a ObjC solution for parsing and displaying ePub documents on the iPhone. It's part of his TouchCode open source repository. |
|||||
|
|
protected by Community♦ Jan 21 '12 at 5:36
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.