gpt4 book ai didi

html - 如何为 UIWebView 中的图像设置适合大小?

转载 作者:太空狗 更新时间:2023-10-29 15:27:02 26 4
gpt4 key购买 nike

我将 HTML 加载到我的 UIWebView 中,其中包括 TextImages

Text适合UIWebViewImages不适合UIWebView

它在 UIWebView 中太大了。

它在 UIWebView 的末尾显示滚动条。

我想在 UWebView 中调整图像适合大小。所以我用下面的代码进行了测试。

self.myWebView.scalesPageToFit = YES;

但是它是固定的,包括文本和文本太小而无法阅读,图像是固定的。

我想设置Text Normally并且只想在UIWeView中适应size Image。

我该怎么做?

最佳答案

我已经使用 css 解决了这个问题。下面样式标签中包含的 css 将确保自动调整图像大小,保持 UIWebView 宽度的纵横比。希望这对您有所帮助!

NSString *strTemplateHTML = [NSString stringWithFormat:@"<html><head><style>img{max-width:100%%;height:auto !important;width:auto !important;};</style></head><body style='margin:0; padding:0;'>%@</body></html>", @"insert your html content here"];

[webView loadHTMLString:strTemplateHTML baseURL:nil];

关于html - 如何为 UIWebView 中的图像设置适合大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22293662/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com