In my app, I use UIWebviews to display some one page PDFs, I've noticed that in iOS5 the default zoom level is to show the entire document where as in 4.3 the document was opened zoomed in.
Is it possible to programmatically set the zoom level on the UIWebview?
*I've also tried a QLPreviewController and am noticing this same default zoomed out behaviour
I got there in the end by looping through the webviews subviews and zooming the scrollview:
Its important to note that you need to wait for the webview to render on the screen before attempting to zoom, this caught me out ;-\