Understanding SwiftUI

Heads up... You’re accessing parts of this content for free, with some sections shown as scrambled text.

Heads up... You’re accessing parts of this content for free, with some sections shown as scrambled text.

Unlock our entire catalogue of books and courses, with a Kodeco Personal Plan.

Unlock now

Not too long ago, if you wanted to create a user interface, iOS provided lots of different solutions. These solutions worked in a variety of different ways and each held their own pain points. This meant each project could be different.

In 2019, Apple introduced an entirely new way to create user interfaces with SwiftUI. While the old ways of making UIs still exist, SwiftUI streamlines UI development into a process that’s easy to understand, intuitive, and most of all, it’s fun.

SwiftUI works by composing various views together. Out of the box, SwiftUI provides all the various elements that you use in your app. There are buttons, text fields, labels, and so on. You can even design your own. Interfaces are created by placing views in horizontal and vertical stacks that automatically adjust based on the size of the device.

These views are lightweight. This means that they render fast on screen. With lightweight views, you can edit your interface, and in realtime, see the results onscreen. This provides for rapid iteration and experimentation.

Reflecting the Data

SwiftUI represents a current trend known as declarative programming. With declarative programming, your user interface reflects the state of your data. The framework observes special variables and when those variables change, the user interface is automatically updated.

See forum comments
Download course materials from Github
Previous: Introduction Next: Demo: Making your First SwiftUI App