通常有三种方式
1.使用webView
2.使用自带的CLPreviewController类
3.绘制PDF文档
这里重点说明前两种
1.使用webView 只需要有文件的URL就可以了 先上代码
#import "PDFViewController.h"
@interface PDFViewController ()
@property (weak, nonatomic) IBOutlet UIWebView *webView;
@end
@implementation PDFViewController
- (void)viewDidLoad {
[super viewDidLoad];
self.webView.scalesPageToFit = YES;
NSString *documentLocation = [[NSBundle mainBundle] pathForResource:@"cs" ofType:@"pdf"];
NSURL *myDocument = [NSURL fileURLWithPath:documentLocation];
NSURLRequest *request = [NSURLRequest requestWithURL:myDocument];
[self.webView loadRequest:request];