繁体   English   中英

使用 HTML 数据调整 UILabel 的大小

[英]Resizing UILabel with HTML data

我创建了一个 UILabel 并将其字体大小与一个搜索栏同步,并将我的 html 格式文本加载到 UILabel 上。 不幸的是,如果我使用搜索栏更改 UILabel 的字体大小,格式将被删除。

我使用了来自 garie 的这种方法,这是从另一个线程中回答的

private func getHtmlLabel(text: String) -> UILabel {
    let label = UILabel()
    label.numberOfLines = 0
    label.lineBreakMode = .byWordWrapping
    label.attributedString = stringFromHtml(string: text)
    return label
}

private func stringFromHtml(string: String) -> NSAttributedString? {
    do {
        let data = string.data(using: String.Encoding.utf8, allowLossyConversion: true)
        if let d = data {
            let str = try NSAttributedString(data: d,
                                             options: [NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType],
                                             documentAttributes: nil)
            return str
        }
    } catch {
    }
    return nil
}

链接: Swift:在标签或文本视图中显示 HTML 数据

有什么方法可以用来保留我的 html 格式文本?

编辑 #1:这就是我调整 UILabel 大小的方式。

@IBOutlet weak var textLabel: UILabel!
@IBAction func resizeText(_ sender: UISlider) {
    textLabel.font = UIFont.systemFont(ofSize: CGFloat(sender.value) * 20.0)
}

我传递到 UILabel 的 HTML 数据:

<html><body><b>hello world</b></body></html>

这是 UILabel 上的格式化 HTML 数据:

在此处输入图片说明

调整 UILabel 大小后,它会丢失其格式:

在此处输入图片说明

编辑#2:

尝试了米兰的回答但遇到了错误。 NSAttributedStringKey 中未解析的标识符

这是我的代码:

import UIKit

class GalleryViewController: UIViewController {

    override func viewDidLoad() {
        super.viewDidLoad()
        textLabel.attributedText = stringFromHtml()
    }

    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
    }

    @IBOutlet weak var textLabel: UILabel!
    @IBAction func resizeText(_ sender: UISlider) {
        if let attributedText = textLabel.attributedText {
            let newAttributedText = NSMutableAttributedString(attributedString: attributedText)
            newAttributedText.setFontSize(newSize: CGFloat(sender.value) * 20.0)
            textLabel.attributedText = newAttributedText
        }
    }


    private func stringFromHtml() -> NSAttributedString? {
        do {
            let string = "<html><body><b>hello world</b></body></html>"
            let data = string.data(using: String.Encoding.utf8, allowLossyConversion: true)
            if let d = data {
                let str = try NSAttributedString(data: d,
                                                 options: [NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType],
                                                 documentAttributes: nil)
                return str
            }
        } catch {
        }
        return nil
    }
}

extension NSMutableAttributedString {
    func setFontSize(newSize: CGFloat) {
        beginEditing()
        self.enumerateAttribute(NSAttributedStringKey.font, in: NSRange(location: 0, length: self.length)) { (value, range, stop) in
            if let f = value as? UIFont {
                let newFont = f.withSize(newSize)
                removeAttribute(NSAttributedStringKey.font, range: range)
                addAttribute(NSAttributedStringKey.font, value: newFont, range: range)
            }
        }
        endEditing()
    }
}

直接设置字体会弄乱您的属性文本。 您必须在属性文本上设置字体大小:

@IBAction func resizeText(_ sender: UISlider) {
    if let attributedText = textLabel.attributedText {
        let newAttributedText = NSMutableAttributedString(attributedString: attributedText)
        newAttributedText.setFontSize(newSize: CGFloat(sender.value) * 20.0)
        textLabel.attributedText = newAttributedText
    }
}

为此,您需要对NSMutableAttributedString以下扩展:

extension NSMutableAttributedString {
    func setFontSize(newSize: CGFloat) {
        beginEditing()
        self.enumerateAttribute(NSAttributedStringKey.font, in: NSRange(location: 0, length: self.length)) { (value, range, stop) in
            if let f = value as? UIFont {
                let newFont = f.withSize(newSize)
                removeAttribute(NSAttributedStringKey.font, range: range)
                addAttribute(NSAttributedStringKey.font, value: newFont, range: range)
            }
        }
        endEditing()
    }
}

尝试使用 UserDefaults 保存从第二个函数返回的 NSAttributedString:

1- 将属性文本保存在变量中

let attributedText = stringFromHtml(string: String)

2- 将其保存在 UserDefaults 中

UserDefaults.standard.set(attributedText, forKey: "attributedText")

为了检索它,您可以使用这种格式来安全地解开值:

if let text = UserDefaults.standard.object(forKey: "attributedText") as? NSAttributedString {
   label.attributedString = text
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM