web-dev-qa-db-fra.com

Comment afficher du texte HTML dans TextView

J'ai une chaîne contenant du HTML. Je voudrais afficher le HTML dans un contrôle TextView. J'ai trouvé du code et l'ai essayé:

def = "some html text"

definition.attributedText = NSAttributedString(
  data: def.dataUsingEncoding(NSUnicodeStringEncoding, allowLossyConversion: true)!,
  options: [ NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType],
      documentAttributes: nil,
      error: nil)

Sur l'option je reçois une erreur:

[String: String] n'est pas convertible en chaîne.

Est-ce que quelqu'un peut m'aider à afficher du HTML dans un TextView

12
lascoff

Cela fonctionne pour moi. Rappelez-vous que le constructeur NSAttributedString maintenant throws et un objet NSError:

Swift 3:

do {
    let str = try NSAttributedString(data: def.data(using: String.Encoding.unicode, allowLossyConversion: true)!, options: [NSDocumentTypeDocumentAttribute : NSHTMLTextDocumentType], documentAttributes: nil)
} catch {
    print(error)
}

Swift 2.x:

do {
    let str = try NSAttributedString(data: def.dataUsingEncoding(NSUnicodeStringEncoding, allowLossyConversion: true)!, options: [NSDocumentTypeDocumentAttribute : NSHTMLTextDocumentType], documentAttributes: nil)
} catch {
    print(error)
}
40
JAL

Essayez d’utiliser la version Swift3 du code que j’ai trouvé ici:

https://github.com/codepath/objc_ios_guides/wiki/Generating-NSAttributedString-from-HTML

            func styledHTMLwithHTML(_ HTML: String) -> String {
                let style: String = "<meta charset=\"UTF-8\"><style> body { font-family: 'HelveticaNeue'; font-size: 20px; } b {font-family: 'MarkerFelt-Wide'; }</style>"
                return "\(style)\(HTML)"
            }

            func attributedString(withHTML HTML: String) -> NSAttributedString {
                let options: [AnyHashable: Any] = [NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType]
                return try! NSAttributedString(data: HTML.data(using: String.Encoding.utf8)!, options: options as! [String : Any], documentAttributes: nil)
            }

            // This is a string that you might find in your model
            var html: String = "This is <b>bold</b>"

            // Apply some inline CSS
            var styledHtml: String = styledHTMLwithHTML(html)

            // Generate an attributed string from the HTML
            var attributedText: NSAttributedString = attributedString(withHTML: styledHtml)

            // Set the attributedText property of the UILabel
            label.attributedText = attributedText
0
Vitya Shurapov

Essayez SwiftSoup . Ce travail pour moi.

let html = "<html><head><title>First parse</title></head><body><p>Parsed HTML into a doc.</p></body></html>"
let doc: Document = try SwiftSoup.parse(html)
let text: String = try doc.text()
0
Scinfu