轉換 JSON 為強類型對象:Mapper
Mapper 是一個簡單的 Swift 庫,用于轉換 JSON 為強類型對象。和其它庫相比,Mapper 的一個優點是你可以有不可改變的特性。
代碼:
import Mapper // Conform to the Mappable protocol struct User: Mappable { let id: String let photoURL: NSURL? // Implement this initializer init(map: Mapper) throws { try id = map.from("id") photoURL = map.optionalFrom("avatar_url") } } // Create a user! let JSON: NSDictionary = ... let user = User.from(JSON) // This is a 'User?'
本文由用戶 jopen 自行上傳分享,僅供網友學習交流。所有權歸原作者,若您的權利被侵害,請聯系管理員。
轉載本站原創文章,請注明出處,并保留原始鏈接、圖片水印。
本站是一個以用戶分享為主的開源技術平臺,歡迎各類分享!