I am given a large HTML content (let's say a huge blog post). The objective is to render this HTML content into multiple pages (paginated application). For clarity, instead of vertical scrolling in a UIWebView
, the content is split like a book (i.e. you turn the pages to move to the rest of the content, instead of scrolling down in a typical UIWebView
).
I looked up on SO for similar posts. Unfortunately, these posts haven't been so useful in my case. For reference, here are the similar SO posts:
- Split html string into multiple pages
- How to divide the webview content in multiple pages
- Present html content as dynamic "pages"
- External reference: https://recalll.co/app/?q=android%20webview%20-%20Split%20html%20string%20into%20multiple%20pages
How can I achieve page-based (non-vertical scrolling) application given the HTML content?