2

可能重复:
在 iphone 的 uiwebview 中显示文本

我有一个 HTML 格式的字符串。

我想先将此 HTML 字符串转换为普通字符串,然后将转换后的普通字符串显示到 webview 中。(我也想要 3 段。)

如何在 UIWebview 中做到这一点?

4

2 回答 2

3

try this?

NSString *myText = [self.webView stringByEvaluatingJavaScriptFromString:
                                          @"document.body.textContent"];
于 2012-04-19T07:34:51.357 回答
0

它将帮助您在文本中转换 html 如何将 NSString HTML 标记转换为纯文本 NSString?

对于其他问题,请尝试此链接 在 iphone 的 uiwebview 中显示文本

您可以使用

NSString *str = [self.mYwebView stringByEvaluatingJavaScriptFromString:
                                      @"document.body.textContent"];
于 2012-04-19T07:39:37.600 回答