gpt4 book ai didi

html - 尝试在 iOS 中解析 html 表格

转载 作者:行者123 更新时间:2023-11-28 13:37:25 26 4
gpt4 key购买 nike

我是 swift/iOS 的新手,我正在寻找无需 WebView 即可解析 html 表格并将其显示在屏幕上的最佳方法。可以使用 NSMutableAttributedStringNSAttributedString

最佳答案

您可以使用 UITextView 显示 HTML 表格。

@IBOutlet weak var textView: UITextView!
override func viewDidLoad() {
super.viewDidLoad()
if let data = htmlString.data(using: String.Encoding.unicode),
let attString = try? NSAttributedString(data: data, options: [NSAttributedString.DocumentReadingOptionKey.documentType : NSAttributedString.DocumentType.html], documentAttributes: nil) {
lbl.attributedText = attString
textView.attributedText = attString
}
}

关于html - 尝试在 iOS 中解析 html 表格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56442244/

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