2
let attributedString = NSAttributedString(data: encodedData, options: attributedOptions, documentAttributes: nil, error: nil)!
コンパイラエラー:「文脈のないあいまいな式の種類」 どのように解決できますか? SWIFT 2.0+でattributedOptionsパラメータ"コンテキストがなくてもあいまいではない式のタイプ"を解決するには?
do {
let encodedData = yourEncodedString.dataUsingEncoding(NSUTF8StringEncoding)!
let attributedOptions : [String: AnyObject] = [
NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType,
NSCharacterEncodingDocumentAttribute: NSUTF8StringEncoding
]
let attributedString = try NSAttributedString(data: encodedData, options: attributedOptions, documentAttributes: nil)
// self.init(attributedString.string)
} catch {
fatalError("Unhandled error: \(error)")
}
感謝!それは助けになった – Dirder