I am trying to display a PDF from a server in my app.
I tried going the route of Document Interaction Controller, but that only display files within a app, not off the web :(
if (URL) {
// Initialize Document Interaction Controller
self.documentInteractionController = [UIDocumentInteractionController interactionControllerWithURL:URL];
// Configure Document Interaction Controller
[self.documentInteractionController setDelegate:self];
// Preview PDF
[self.documentInteractionController presentPreviewAnimated:YES];
}
Would UIWebView be my best solution to display PDF from server? Not a PDF on a website, but on a server \SEVERNAME\LHSD\PDFs\example.pdf