gpt4 book ai didi

html - UIWebview - 文本切割

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:44:26 24 4
gpt4 key购买 nike

我正在使用 UIWebview 来显示内容。但是我在 WebView 中遇到了文本切割问题。 UIWebview 内容大小根据图像大小和内容动态变化。但是 Webview 框架是恒定的,

如何避免?请引用附件图片。

提前致谢

enter image description here

最佳答案

尝试使用指示内容已完全加载的委托(delegate),然后通过 javascript 代码行获取高度,然后相应地调整 uiwebview 的框架:

-(void)webViewDidFinishLoad:(UIWebView *)webView
{
NSString *output = [webView stringByEvaluatingJavaScriptFromString:@"document.body.offsetHeight;"];
[webView setFrame:CGRectMake(webView.frame.origin.x, webView.frame.origin.y, webView.frame.size.width, [output intValue])];
}

享受 :)

关于html - UIWebview - 文本切割,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12598271/

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