If you want to avoid a lot of programming, you probably need to use some library which will help you extract text from PDFs.
You have two options:
1) Use OCR library. Since PDF can contain images besides text, performing OCR to get the text is the most generic solution. To perform OCR on a PDF document, you need to convert it to UIImage object. Another approach can be to convert contents of the WebView to UIImage, but this might result with image with lower resolution, which can affect OCR performance.
The downside to using OCR library is that you will not get 100% accurate text, since the OCR engine always introduces errors.
The best options for OCR are Tesseract for iOS (free, but with higher error rate and a bit more complex to tweak for results). A more robust option is BlinkOCR, which is free to try, paid when in commercial use, but you can get a ton of help from their engineers.
2) You can also use PDF library. PDF libraries can reliably extract text written in the document, with exception of text which is part of the images inside the PDF. So depending on the documents you want to read this might be a better option (or not).
Some options for PDF libraries can be found here, and in our experience, PDFlib gives very good results and is the most customizable.