単純な画像をロードするUIWebviewがあります。ユーザーは、垂直方向にスクロールしなくても画像全体を表示する必要があります。setSalesPageToFit:YESを使用すると、ユーザーは画像をロードしましたが、画像全体を表示するには垂直方向にスクロールする必要がありました。画像を完全に表示し、スクロールする必要がないようにするにはどうすればよいですか?
これは私のコードスニペットです:
NSString *pathImg = [[NSBundle mainBundle] pathForResource:[NSString stringWithFormat:@"1"] ofType:@"png"];
NSString* webViewContent = [NSString stringWithFormat:
@"<html>"
"<body style='background-color: transparent' >"
"<div align='center'>"
"<img src=\"file://%@\"/ style='align:center;'>"
"</div>"
"</body></html>", pathImg];
webView.backgroundColor =[UIColor clearColor];
[self->webView loadHTMLString:webViewContent baseURL:nil];
[webView setScalesPageToFit:YES];
どんな助けでも大歓迎です...