-1

我想在 iOS 的 PDF 页面上卷曲。我已将我的 PDF 加载到 Web 视图,但我想在 PDF 页面上生效,所以请帮助我。我想滑动到翻页并滑动它卷曲。

NSString *path = [[NSBundle mainBundle] pathForResource:@"paper" ofType:@"pdf"];
_webView.autoresizingMask=(UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth);

NSURL *myUrl=[NSURL fileURLWithPath:path];

NSURLRequest *myRequest = [NSURLRequest requestWithURL:myUrl];
[_webView loadRequest:myRequest];

并提前感谢助手。

4

1 回答 1

1

您应该可以通过 UIPageViewController-PDF 做到这一点(不过,请遵循 github 页面的完整说明):

NSString *path = [[NSBundle mainBundle] pathForResource:@"myFile" ofType:@"pdf"];
PageViewController *page = [[PageViewController alloc] initWithPDFAtPath:path];
[self presentViewController:page animated:YES completion:NULL];

在 UIWebview 中加载 PDF 不是正确的方法。使用 UIPageViewController 加载带有卷曲动画的 PDF。

于 2014-07-14T09:47:41.910 回答