Is there any documentation on how to use this? #266
-
I'm trying to work with this package, but I'm really struggling to decipher the workings of it from the TestApp. is there any documentation I can look to? Thank you :) |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 2 replies
-
Unfortunately the documentation is still really sparse, and I just recently started writing user guides for new features: https://github.com/readium/swift-toolkit/tree/develop/Documentation/Guides To understand the models ( If you have more practical questions or issues, write them down here and I'll try to answer or point in the right direction. |
Beta Was this translation helpful? Give feedback.
-
To get you started, here's how to build a minimal EPUB reader using the Readium Swift toolkit: 1. Parse an EPUB file into a
|
Beta Was this translation helpful? Give feedback.
-
Wow, I did not expect an answer let alone such a comprehensive one so fast. Thank you so much! |
Beta Was this translation helpful? Give feedback.
-
I'm closing this discussion as the answer concerns the deprecated v2. v3 will be released early January. |
Beta Was this translation helpful? Give feedback.
To get you started, here's how to build a minimal EPUB reader using the Readium Swift toolkit:
1. Parse an EPUB file into a
Publication
model using the Streamer2. Add the
Publication
to the local HTTP server to serve the EPUB contentTo render an EPUB, it needs to be served through an HTTP server. The streamer package provides one.
You need to create it once and …