Krunal
Krunal

Reputation: 6490

create epub file in objective c

i am new to iPad development. I am making iPad applications. In my application i want to create an epub file using Xcode 4.2, is there any demo tutorial available for making ePub file using Xcode. I have searched in google but i havn't found any thing which starts from basic..

can any one give me basic ideas, how to start ??

Upvotes: 0

Views: 1480

Answers (1)

Tomasz Wojtkowiak
Tomasz Wojtkowiak

Reputation: 4920

I don't know any code examples which shows how to generate ePub in objective c, but ePub is pretty easy format. It's zip file with structurized content based on xml files http://www.jedisaber.com/eBooks/Tutorial.shtml
You can build your solution based on projects in other languages, like, in ex. Ruby ePub generator https://github.com/jugyo/eeepub or C# http://sourceforge.net/projects/epubhub/

Upvotes: 1

Related Questions