我创建自己的富文本编辑器&使用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
设备