我创建自己的富文本编辑器并使用 webview
NSString *htmlStrToShow = [NSString stringWithFormat:@"<body bgcolor=\"#E6E6FA\" contenteditable =\"true\">%@</body>",htmlStrToShow];
[self.webView loadHTMLString:htmlStrToShow baseURL:nil];
并且还使用了
[_self.webView stringByEvaluatingJavaScriptFromString:@" document.body.contentEditable =\"true\"; document.designMode=\"on\";"];
但是我们可以在图像中看到两行后可编辑区域的内容大小没有增加。它只发生在iOS7
设备中