UIWebview是内容可编辑的,我能够输入文本,但在两行后我能够输入文本,但文本在IOS 7中不可见

时间:2013-10-03 07:37:28

标签: ios objective-c ipad ios7

enter image description here

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

中发生

0 个答案:

没有答案