Ver código fonte

PDFViewer(ios) - PDFView自适应

dengkang 1 ano atrás
pai
commit
ada6852780

BIN
PDFViewer.xcodeproj/project.xcworkspace/xcuserdata/kdan.xcuserdatad/UserInterfaceState.xcuserstate


+ 1 - 0
PDFViewer/Controller/CPDFViewController.m

@@ -29,6 +29,7 @@
     CPDFDocument *document = [[CPDFDocument alloc] initWithURL:url];
     CPDFView *pdfView = [[CPDFView alloc] initWithFrame:self.view.bounds];
     pdfView.document = document;
+    pdfView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
     [self.view addSubview:pdfView];
 }