Reader small image

You're reading from  SwiftUI Cookbook - Third Edition

Product typeBook
Published inDec 2023
Reading LevelIntermediate
PublisherPackt
ISBN-139781805121732
Edition3rd Edition
Languages
Tools
Concepts
Right arrow
Author (1)
Juan C. Catalan
Juan C. Catalan
author image
Juan C. Catalan

Juan C. Catalan is a software engineer with more than 18 years of professional experience. He started mobile development back in the days of iOS 3. Juan has worked as a professional iOS developer in many industries, including medical devices, financial services, real estate, document management, fleet tracking and industrial automation. He has contributed to more than 30 published apps in the App Store, some of them with millions of users. Juan gives back to the iOS development community with technical talks, mentoring developers, reviewing technical books and now as a book author. He lives in Austin, Texas, with his wife Donna, where they spend time with their kids.
Read more about Juan C. Catalan

Right arrow

Fetching remote data in SwiftUI

One of the operations made easier by the async await model is network data transfer operations. Fetching data from a network resource is an asynchronous operation by definition and until now, we had to manage it with the completion block mechanism.

iOS 15 added an async await interface to the URLSession class to embrace the new pattern. In this recipe, we’ll implement a class to download data from a remote service and present it in a SwiftUI view.

We’ll use a free service called JSONPlaceholder (https://jsonplaceholder.typicode.com) that provides a free fake API for testing purposes. The service has multiple resources with relations among them.

The app we’ll implement will have a view with a list of fake users to choose from, and another view to present the different fake blog posts for the user we selected.

Getting ready

Create a SwiftUI app called FakePosts.

How to do it…

We are going to implement...

lock icon
The rest of the page is locked
Previous PageNext Page
You have been reading a chapter from
SwiftUI Cookbook - Third Edition
Published in: Dec 2023Publisher: PacktISBN-13: 9781805121732

Author (1)

author image
Juan C. Catalan

Juan C. Catalan is a software engineer with more than 18 years of professional experience. He started mobile development back in the days of iOS 3. Juan has worked as a professional iOS developer in many industries, including medical devices, financial services, real estate, document management, fleet tracking and industrial automation. He has contributed to more than 30 published apps in the App Store, some of them with millions of users. Juan gives back to the iOS development community with technical talks, mentoring developers, reviewing technical books and now as a book author. He lives in Austin, Texas, with his wife Donna, where they spend time with their kids.
Read more about Juan C. Catalan