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

Join our book community on Discord

https://packt.link/iosdevelopment

Qr code Description automatically generated

In this chapter, we'll learn how to manage the state of single or multiple views. In the declarative world of SwiftUI, you should consider views as functions of their state, whereas in the imperative world of UIKit, you should tell a view what it must do depending on the state. In SwiftUI, views react to changes. SwiftUI has three ways of reaching these goals:

  • Using the binding property wrappers that SwiftUI provides
  • Using Observation, a new framework introduced in iOS 17
  • Using Combine, the framework that Apple introduced to implement functional reactive programming

We will learn about the first two mechanisms in this chapter and in Chapter 11, Driving SwiftUI with Combine, we'll learn how to use Combine to drive changes in SwiftUI views.Property wrappers are a way to decorate a property and were introduced in Swift 5.1. There are four different ways of using the binding property wrappers in SwiftUI:

  • @State...
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