gpt4 book ai didi

html - UITextView HTML 为图像应用响应式 CSS

转载 作者:行者123 更新时间:2023-11-28 06:52:05 25 4
gpt4 key购买 nike

我有一个 textView 来设置文章的内容(富 html 文本)。

static func setTextViewRichText(textView: UITextView, html: String) {
do{
let attributedText = try NSAttributedString(data: html.dataUsingEncoding(NSUTF8StringEncoding)!, options: [NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType, NSCharacterEncodingDocumentAttribute: NSNumber(unsignedLong: NSUTF8StringEncoding)], documentAttributes: nil)
textView.attributedText = attributedText
} catch let err as NSError {
NSLog("%s", err)
textView.text = html
}
}

html 字符串是从我的网站下载的。我申请 .img-responsive全局类到所有图像(twitter bootstrap)。如何将此类(或类似的响应式样式应用于我的 UITextView

最佳答案

只需在您的 html 中添加响应式图像样式

static func addResponsiveImageStyleToHtml(html: String) -> String {
return
"<head>" +
" <style>" +
" img {max-width: 100%; height: auto;}" +
" </style>" +
"</head>" +
html
}

关于html - UITextView HTML 为图像应用响应式 CSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34599249/

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