Implementing page-flip-type animations in UIWebView on the iPhone
I'm using UIWebView on the iPhone to display EPUB content, but I'd like to simulate the page flipping 'experience' (display an animation of开发者_运维百科 the page folding over) and then scrolling the content in my UIWebView down by the area of one screen -- effectively turning a page in reflowable non-paginated content. Should I stop dreaming, or would this be possible?
What about making a copy of the UIWebView
, scrolling it to the appropriate position, and then using the page flip transition to go from view to view, then deallocating the first UIWebView
?
精彩评论