Skip to content

Instantly share code, notes, and snippets.

@amichnia
amichnia / String+HTML.swift
Created November 6, 2019 13:38
Swift: Convert basic raw html string to attributed string
import UIKit
extension String {
private var attributedStringOptions: [NSAttributedString.DocumentReadingOptionKey: Any] {
return [
.documentType: NSAttributedString.DocumentType.html,
.characterEncoding: String.Encoding.utf8.rawValue
]
}