gpt4 book ai didi

iphone - UILabel 和 TextView 的 HTML 字符串内容

转载 作者:行者123 更新时间:2023-12-03 21:12:29 26 4
gpt4 key购买 nike

我得到了一个包含 html 标记内容的对象,例如:

string = @"<p>This is wonderful</p> <p>Also some &#8216; entidies &#8217; <p>";

所以我想首先将此实体转换为我的标签文本。

第二步是将我的 p 标签转换为换行符。

第三步将我的“img”标签转换为 uiimageviews 和一些简单的文本格式“b”、“strong”等

你有什么想法可以解决我的问题吗?

最佳答案

您应该看看 Three20 项目,其中包含一个 TTStyledTextLabel 类,它允许您呈现 HtmL 代码,甚至激活链接。

TTStyledTextLabel  *htmlLabel = [[[TTStyledTextLabel alloc] initWithFrame:self.contentView.bounds] autorelease];
htmlLabel.userInteractionEnabled = YES;
[aView addSubview:htmlLabel];

htmlLabel.text = [TTStyledText textFromXHTML:htmlText];

关于iphone - UILabel 和 TextView 的 HTML 字符串内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2261654/

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