Displaying PDF content in UITextView
MY apps deals with PDF.Here I want to display the PDF content in my app.I can display the contents in UIWebView.Is it possible to diaplay t开发者_StackOverflow社区he PDF content in the UITextView..I have added PDF in my resource folder....
Short answer no, you cannot display a PDF file inside a UITextView, this class is made to display text with format. Though you can add the UIWebView with the PDF as a subview to the UITextView.
精彩评论