Can we open pdf file using UIWebView on iOS?
问题 Can we open the pdf file from UIWebView? 回答1: Yes, this can be done with the UIWebView. If you are trying to display a PDF file residing on a server somewhere, you can simply load it in your web view directly: Objective-C UIWebView *webView = [[UIWebView alloc] initWithFrame:CGRectMake(10, 10, 200, 200)]; NSURL *targetURL = [NSURL URLWithString:@"https://www.example.com/document.pdf"]; NSURLRequest *request = [NSURLRequest requestWithURL:targetURL]; [webView loadRequest:request]; [self.view