Same Issue here
Post
Replies
Boosts
Views
Activity
Same issue here. I really hope this will be fixed ASAP!
I had also issue. I fixed it for me by replace utf8 with unicode
let htmlData = NSString(string: modifiedFont).data(using: String.Encoding.unicode.rawValue) ?? Data()
let options: [NSAttributedString.DocumentReadingOptionKey: Any] = [
.documentType: NSAttributedString.DocumentType.html,
.characterEncoding: String.Encoding.unicode.rawValue,
]