我有一个加载简单图片的 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];
任何帮助将不胜感激......