PDF文件的宽度小于iPad屏幕,应该怎么做?

我尝试在UIWebView中显示PDF文件,如下所示:1.使用一个UIwebView(名称:pdfView)。 2.Give Iboutlet连接到它并委托给FilesOwner 3.在Viewdidload中

[self.pdfView loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@“ObjC”ofType:@“pdf”]]]];

4.ObjC.pdf应该在资源文件夹中。它的工作正常,但是当这个文件显示在运行时在iPad上查看时,它会在右侧显示模拟器屏幕。 意思是,默认情况下pdf是左侧的,因此右侧显示模拟器屏幕。


尝试

[self.pdfView setScalesPageToFit:YES];

链接地址: http://www.djcxy.com/p/72679.html

上一篇: Width of PDF file is less that iPad screen, what should do?

下一篇: Can bitwise operators have undefined behavior?