Search icon CANCEL
Subscription
0
Cart icon
Cart
Close icon
You have no products in your basket yet
Save more on your purchases!
Savings automatically calculated. No voucher code required
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Swift 4 Programming Cookbook

You're reading from  Swift 4 Programming Cookbook

Product type Book
Published in Sep 2017
Publisher Packt
ISBN-13 9781786460899
Pages 384 pages
Edition 1st Edition
Languages
Toc

Table of Contents (9) Chapters close

Preface 1. Swift Building Blocks 2. Building on the Building Blocks 3. Data Wrangling with Swift Control Flow 4. Generics, Operators, and Nested Types 5. Beyond the Standard Library 6. Swift Playgrounds 7. Server-Side Swift 8. Performance and Responsiveness in Swift

JSON

As discussed in the last recipe, almost every app will need to exchange information with the internet at some point and, in that recipe, we retrieved an image from a remote server. Very often your app will need to retrieve more varied data, perhaps relating to the result of a search, or information about shared state held on the server.

This information can be represented in any number of ways, but one of the most common ways is as JSON (JavaScript Object Notation), which is a text-based structure for representing information. A JSON object contains key-value pairs, where the keys are strings, and the values can be strings, numbers, booleans, null, other objects, or arrays.

Consider this example of a JSON objects:

{
"name": {
"givenName": "Keith",
"middleName": "David",
"familyName": "Moon"
...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at AU $19.99/month. Cancel anytime}