0

我正在开发 PDF 阅读器应用程序。如果我显示 pdf 文件,那么我无法更改它的字体大小。

所以我在 UIWebView 中显示 ePub 文件。但我的问题是如何像 iBook 和 kindle 应用程序那样在 UIWebView 中添加页面卷曲动画。

4

1 回答 1

6

我创建了一个名为 myWebView 的 UIWebView,单击按钮时,卷曲效果将显示在 webview 上:-

    -(IBAction) nextPageAnimationForWebView{        
    CATransition *animation = [CATransition animation];
    [animation setDelegate:self];
    [animation setDuration:1.0f];
    animation.startProgress = 0.5;
    animation.endProgress   = 1;
    [animation setTimingFunction:UIViewAnimationCurveEaseInOut];
    [animation setType:@"pageCurl"];

        //[animation setType:kcat]; 
        [animation setSubtype:kCATransitionMoveIn];

    [animation setRemovedOnCompletion:NO];
    [animation setFillMode: @"extended"];
    [animation setRemovedOnCompletion: NO];
    [[myWebView layer] addAnimation:animation forKey:@"WebPageCurl"]; 

}

请告诉这是否解决了您的答案。

于 2011-11-21T12:10:49.097 回答