0

我有个问题。我正在尝试制作一个简单的应用程序来查看 pdf,UIPageViewController但我无法让它工作。

我尝试使用下面 github 页面上列出的项目。

https://github.com/jackhumphries/UIPageViewController-PDF

但我习惯于使用,StoryBoards但我无法使用StoryBoards.

我使用以下代码创建了一个按钮:

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

我收到以下错误:

Undefined symbols for architecture armv7:
  "_OBJC_CLASS_$_PageViewController", referenced from:
      objc-class-ref in PDFPageViewController.o
ld: symbol(s) not found for architecture armv7
clang: error: linker command failed with exit code 1 (use -v to see invocation)

当我删除最后两行时,我的项目正在运行,但您可以想象我的 pdf 没有出现。

我尝试在我的故事板中创建单独的视图,但我无法让它工作。

4

1 回答 1

-1
NSString *path = [[NSBundle mainBundle] pathForResource:@"mhm" ofType:@"pdf"];
    UIPageViewController *page = [[UIPageViewController alloc] initWithPDFAtPath:path];
    [self presentViewController:page animated:YES completion:nil];

试试这个

于 2013-07-15T10:48:13.550 回答