我需要以模态方式显示 PDF 文件,当我的用户单击某些按钮时,我将 PDF 加载到一个类中并以模态方式呈现它,现在我需要在 modalVC 上为用户提供关闭或返回的按钮,所以我添加了RightBarButtonItem,问题是它没有出现吗?这是加载 PDF 的代码
[self.pdfViewController.view addSubview:pdfViewer];
UINavigationController *navController = [[UINavigationController alloc]
initWithRootViewController:pdfViewController];
self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc]
initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:self action:@selector(shutDown)];
[self presentModalViewController:navController animated:YES];
我在这里做错了什么?