To create the web view:
Code:
UIWebView *tempWebView = [[UIWebView alloc] initWithFrame:CGRectMake(0.0, 0.0, self.view.bounds.size.width, self.view.bounds.size.height)];
tempWebView.backgroundColor = [UIColor whiteColor];
tempWebView.scalesPageToFit = YES;
tempWebView.autoresizingMask = (UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight);
tempWebView.delegate = self;
[self.view addSubview:tempWebView];
[self setWebView:tempWebView];
[tempWebView release];
To load the PDF:
Code:
[webView loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:PDFFilePath isDirectory:NO]]];