gpt4 book ai didi

ios - 在 uitextview 中显示 html 文本

转载 作者:IT王子 更新时间:2023-10-29 07:31:20 26 4
gpt4 key购买 nike

如何在 TextView 中显示 HTML 文本?

例如,

string <h1>Krupal testing <span style="font-weight:
bold;">Customer WYWO</span></h1>

假设文本是粗体,所以它在 TextView 中显示为粗体字符串但我想显示普通文本。这在 iPhone SDK 中可能吗?

最佳答案

为 ios 7+ 使用以下代码块。

NSString *htmlString = @"<h1>Header</h1><h2>Subheader</h2><p>Some <em>text</em></p><img src='http://blogs.babble.com/famecrawler/files/2010/11/mickey_mouse-1097.jpg' width=70 height=100 />";
NSAttributedString *attributedString = [[NSAttributedString alloc]
initWithData: [htmlString dataUsingEncoding:NSUnicodeStringEncoding]
options: @{ NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType }
documentAttributes: nil
error: nil
];
textView.attributedText = attributedString;

关于ios - 在 uitextview 中显示 html 文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2454067/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com