我正在使用UIWebview来显示内容。但我在网络视图中得到了文本切割问题。 UIWebview内容大小根据图像大小和内容动态变化。但Webview框架是不变的,
如何避免它?请参阅附件图片。
提前谢谢
答案 0 :(得分:0)
尝试使用表示内容已完全加载的委托,然后通过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])];
}
享受:)