我正在从资源文件夹中显示 PDF UIScrollview
。但它无法添加。
我补充UIScrollView
说ViewController
。然后采取UIImageView
并添加UIScrollView
如下代码。
scrollView = [[UIScrollView alloc]initWithFrame:CGRectMake(0.0, 0.0,768,1024)];
scrollView.contentSize = CGSizeMake(768,2000);
scrollView.delegate = self;
scrollView.pagingEnabled = NO;
[self.view addSubview:scrollView];
UIImageView *img=[[UIImageView alloc] initWithFrame:CGRectMake(00, 20, 500,900)];
NSString *url = [[NSBundle mainBundle]pathForResource:@"Acknowledgements" ofType:@"pdf"];
img.image=[UIImage imageWithContentsOfFile:url];
[scrollView addSubview:img];
但是滚动视图上没有添加pdf。如果我添加一些图像文件,例如
NSString *url = [[NSBundle mainBundle]pathForResource:@"trophy" ofType:@"png"];
它被添加。PDF 文件正确并在 Mac 中打开。PPT文件也会发生同样的情况。
出了什么问题。谢谢