I want to fit large image into UIwebview with keeping image ratio same as image view.
How can i do
The following code snippet may help you
NSString *fontString = @"\
\
"];
fontString = [[fontString stringByAppendingString:htmlString] stringByAppendingString:@""];
[webView loadHTMLString:fontString baseURL:nil];
The above code will resize the width and height of the image according to view dimension. You can change according to your requirement.