我正在使用 aUIWebView
创建富文本编辑器。此 Web 视图放置在一个自定义单元格中UITableView
在 webview 中键入时,我需要更改单元格大小。我想在打字时获得 webview 的高度。webview 内部没有滚动。
这是webview初始内容,
NSString* plainContent = @"Edit here.....";
NSString* htmlContentString = [NSString stringWithFormat:
@"<html>"
"<body>"
"<div id=\"content\" contenteditable=\"true\" style=\"font-family: Arial\">"
"%@"
"</div>"
"</body></html>", plainContent];
[_webView loadHTMLString:htmlContentString baseURL:nil];
打字时如何更改UIWebView
高度?