IOS SDK Ebook app
i want to开发者_如何转开发 make a EbookApp . The Book has 400 pages. I tried with UIScrollView + UIPageControl , but pagecontrol shows just peak 20 pages. I heard that it can be done with UILabel and three Views. How can i realize it?
You shouldn't load all the pages at time. You should automatically load only 10, for example.
Assume user opens 1st page. So you have to load 1-10 pages, when user is on 5th page you should load 11-15 pages, when user is on 10th page you have to unload 1-5 pages, etc.
Theoretically, it could be done with three views (pages).
Good luck
精彩评论