我有导航控制器的问题。我正在尝试使用 UIPageViewController 制作一个简单的 PDF 应用程序,但我无法让它工作。
我尝试将项目 UIPageViewController-PDF ( https://github.com/jackhumphries/UIPageViewController-PDF ) 与 StoryBoards 一起使用,但是当 PDF 显示时,导航栏消失了。
我有导航控制器的问题。我正在尝试使用 UIPageViewController 制作一个简单的 PDF 应用程序,但我无法让它工作。
我尝试将项目 UIPageViewController-PDF ( https://github.com/jackhumphries/UIPageViewController-PDF ) 与 StoryBoards 一起使用,但是当 PDF 显示时,导航栏消失了。
如果你想制作 pdf-viewer 控制器,只需使用UIWebView
.
NSString *urlAddress = @"http://samplepdf.com/sample.pdf";
NSURL *url = [NSURL URLWithString:urlAddress];
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
[webView loadRequest:requestObj];
我个人在我的应用程序中使用这个 PDF 阅读器:https ://github.com/vfr/Reader
以编程方式设置非常容易(并且应该可以与您的 Storyboard 一起使用)。您也可以继续根据自己的喜好进行定制。