我想在 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];
并提前感谢助手。