Swift-JsonSerializer是纯Swift编写的JSON序列化器和反序列化器。
简单示例:
import JsonSerializer// parse a JSON datalet data: NSDataswitch JsonParser.parse(data) {case .Success(let json): println(json["foo"]["bar"].stringValue)case .Error(let error): println(error)}// build a JSON structurelet profile: Json = [ "name": "Swift", "started": 2014, "keywords": ["OOP", "functional programming", "static types", "iOS"],]println(profile.description) // packed JSON stringprintln(profile.debugDescription) // pretty JSON string
评论