23
SwiftでHTMLエンティティをデコードするにはどうすればよいですか?
サイトからJSONファイルを取得していますが、受け取った文字列の1つは次のとおりです。 The Weeknd ‘King Of The Fall’ [Video Premiere] | @TheWeeknd | #SoPhi など&#8216を適切な文字に変換するにはどうすればよいですか? 私はそれを示すためにXcode Playgroundを作りました: import UIKit var error: NSError? let blogUrl: NSURL = NSURL.URLWithString("http://sophisticatedignorance.net/api/get_recent_summary/") let jsonData = NSData(contentsOfURL: blogUrl) let dataDictionary = NSJSONSerialization.JSONObjectWithData(jsonData, options: nil, error: &error) as NSDictionary var a = dataDictionary["posts"] as NSArray println(a[0]["title"])
121
json
swift
html-entities