Explore >> Select a destination


You are here

qnoid.com
| | www.enekoalonso.com
8.3 parsecs away

Travel
| | Swift's Codable protocol (together with Encodable and Decodable) was introduced in Xcode 9 with Swift 4. This changed for good how we encode and decode JSON....
| | benoitpasquier.com
6.3 parsecs away

Travel
| | Most of mobile apps interact at some point with remote services, fetching data from an api, submitting a form... Let's see how to use Codable in Swift to easily encode objects and decode JSON in couple lines of codes.
| | williamboles.com
5.3 parsecs away

Travel
| Dealing with a JSON network response in iOS projects used to be a pain - you would have to manually parse the response, extract the required values, ignore those that weren't needed, and build your model instances ??. Then came along `Codable` and all that changed.