Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm wondering how to set an initial zoom on a PDF document loaded in a UIWebView in XCode. It is a table, and I want the web view to load zoomed in on a specific column (or part of a column which I can then scroll up and down). I've been reading and some people have pointed to this method - (NSString *)stringByEvaluatingJavaScriptFromString:(NSString *)script but I don't know exactly how this works.

And while we're on the subject of PDFs, is there any way to scrape the PDF and turn it into usable strings?

Edit: For reading a pdf, PDFBox is one possible solution. You have to import JAR files into your Xcode project. Here is a tutorial: http://www.oreillynet.com/pub/a/mac/2005/01/07/ipod_reader.html

share|improve this question
Please check mark the answer if it helped u. – Rohit Dhawan May 30 '12 at 9:36
Please check mark the answer if it helped u. – Rohit Dhawan May 30 '12 at 9:36

1 Answer

up vote 2 down vote accepted
UIWebView *webV = [[UIWebView alloc] init];
webV.scrollView.zoomScale = 4.0;
share|improve this answer
I found a more detailed explanation. I put it in the edit – Ryan Stack May 30 '12 at 16:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.