NSAttributedString 到 HTML 没有 CSS 的字符串

NSAttributedString to HTML string without CSS

我正在尝试将 HTML 转换为 NSAttributedString 格式并返回。从 HTML 转换工作正常,但是转换回 HTML 给了我一个我无法发送到后端的格式:

<!DOCTYPE html PUBLIC -//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv=Content-Style-Type" content="text/css">
<title></title>
<meta name="Generator" content="Cocoa HTML Writer">
<style type="text/css">
p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; line-height: 15.0px; font: 16.0px 'Times New Roman'; color: #000000; -webkit-text-stroke: #000000}
span.s1 {font-family: 'Times New Roman'; font-weight: normal; font-style: normal; font-size: 16.00pt; font-kerning: none}
span.s2 {font-family: 'TimesNewRomanPS-BoldMT'; font-weight: bold; font-style: normal; font-size: 16.00pt; font-kerning: none}
span.s3 {font-family: 'TimesNewRomanPS-ItalicMT'; font-weight: normal; font-style: italic; font-size: 16.00pt; font-kerning: none}
span.s4 {font-family: 'TimesNewRomanPS-BoldItalicMT'; font-weight: bold; font-style: italic; font-size: 16.00pt; font-kerning: none}
</style>
</head>
<body>
<p class="p1"><span class="s1">vanlig text </span><span class="s2">bold</span><span class="s1"> </span><span class="s3">italic</span><span class="s1"> </span><span class="s4">bold_italic asd</span></p>
</body>
</html>

我需要发送我的服务器的 string/format 不能有 css 并且需要更像这样:(没有 CSS)

<html>
<body>
<p>vanlig text <b>bold</b> <i>italic</i><b><i>bold_italic asd</i></b>
</p>
</body>
</html>

我试过这个解决方案但没有成功:NSAttribute string to HTML 我保持格式 css。

到目前为止我的代码:

extension NSAttributedString
{
    var htmlString : String
    {
        let documentAttributes = [NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType]
        if let htmlData = try? self.dataFromRange(NSMakeRange(0, self.length), documentAttributes:documentAttributes),
           let htmlString = String(data:htmlData, encoding:NSUTF8StringEncoding) {
            return htmlString
        }
        return ""
    }

    func attributedStringWithNoTrailingNewLines() -> NSMutableAttributedString
    {
        let mutableAttributedString = NSMutableAttributedString(attributedString: self)
        let nsString = string as NSString
        let lastWhitespaceOrNewlineRange = nsString.rangeOfCharacterFromSet(NSCharacterSet.whitespaceAndNewlineCharacterSet(), options: .BackwardsSearch)
        if lastWhitespaceOrNewlineRange.length != 0 && NSMaxRange(lastWhitespaceOrNewlineRange) == self.length
        {
            mutableAttributedString.replaceCharactersInRange(lastWhitespaceOrNewlineRange, withString: "")
        }
        return mutableAttributedString
    }
}

extension String
{
    var attributedString : NSAttributedString?
    {
        if let data = self.dataUsingEncoding(NSUTF8StringEncoding) {
            let options = [NSDocumentTypeDocumentAttribute:NSHTMLTextDocumentType]
            let attrStr = try? NSAttributedString(data: data, options: options, documentAttributes: nil)
            return attrStr
        }
        return nil
    }
}

我没有用于解决它的确切代码,但我通过迭代 nsfontattributes 并手动添加支持的 html 标签解决了它。 NSAttributedString 扩展中的类似内容:

enumerateAttribute(NSFontAttributeName, inRange: NSMakeRange(0, length), options: NSAttributedStringEnumerationOptions(rawValue: 0)) { (value, range, stop) in
    if let font = value as? UIFont {
        var stringInRange = string.substringInRange(range)
        if font.isBold {
            stringInRange = "<b>\(stringInRange)</b>"
        }
        if font.isItalic {
            stringInRange = "<i>\(stringInRange)</i>"
        }
        // ...
    }
}

我有很好的方法将 NSAttributedString 转换成 HTML 字符串而不用 CSS .

1)取UIWebViewUITextView.

2) 在 WebView.

中设置属性字符串
[webView loadHTMLString:[yourAttributedString stringByReplacingOccurrencesOfString:@"\n" withString:@"<br/>"] baseURL:nil];

3) 从 UIWebView.

获取您的 HTML 字符串
NSString *strExclusion = [webView stringByEvaluatingJavaScriptFromString:@"document.body.innerHTML"];