
I want to fit large image into UIwebview with keeping image ratio same as image view.
How can i do
Set your WebView page to scale fit:
[webView setScalesPageToFit:YES];
EDIT:
Here check these two lines also
CGFloat screenWidth = self.view.frame.size.width;
CGFloat screenHeight = self.view.frame.size.height;
If you know what size you want them pass static values here, will fix your problem.
e.g.
CGFloat screenWidth = 300;
CGFloat screenHeight = 300;