我没有任何背景或任何网络开发/设计知识,而且我目前正在使用iPhone上的电子邮件客户端应用程序,使用UIWebView来读/写电子邮件。
我将电子邮件作为对象下载并从此对象中获取主题,日期,地址和正文,但电子邮件正文是带有标记的HTML字符串。
我的目标:将电子邮件正文视为没有标记的普通字符串,例如iPhone Mail应用或Gmail应用。
以下是一个很好的例子:
谢谢!
答案 0 :(得分:2)
将NSAttributedString
与UITextView
或Label
一起使用
NSString *oldHTMLstring = @"<b>Testing</b>.<br><i>html</i>,<br><u>body text.</u>";
NSAttributedString *newHTMLstring = [[NSAttributedString alloc] initWithData:[oldHTMLstring dataUsingEncoding:NSUTF8StringEncoding] options:@{NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType, NSCharacterEncodingDocumentAttribute: @(NSUTF8StringEncoding)} documentAttributes:nil error:nil];
[textView setAttributedText:newHTMLstring]; // sets attributed text
[textView setText:[newHTMLstring string]]; // sets normal text
这会自动将HTML转换为适当的文本