Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Swift Cookbook - Second Edition

You're reading from  Swift Cookbook - Second Edition

Product type Book
Published in Feb 2021
Publisher Packt
ISBN-13 9781839211195
Pages 500 pages
Edition 2nd Edition
Languages
Authors (2):
Keith Moon Keith Moon
Profile icon Keith Moon
Chris Barker Chris Barker
Profile icon Chris Barker
View More author details

Table of Contents (14) Chapters

Preface 1. Swift Building Blocks 2. Mastering the Building Blocks 3. Data Wrangling with Swift Control Flow 4. Generics, Operators, and Nested Types 5. Beyond the Standard Library 6. Building iOS Apps with Swift 7. Swift Playgrounds 8. Server-Side Swift 9. Performance and Responsiveness in Swift 10. SwiftUI and Combine Framework 11. Using CoreML and Vision in Swift 12. About Packt 13. Other Books You May Enjoy

Function builders, property wrappers, and opaque return types

SwiftUI certainly brings a lot to the table, especially as it's been built from the ground up using Swift at its core. This itself has a plethora of benefits, which include making use of some of the features we are about to cover in this section.

Getting ready

For this section, you'll need the latest version of Xcode available from the Mac App Store.

How to do it...

  1. Continuing with our existing Playground project, let's take another look at how things "stack up". We'll start by taking another look at our VStack:
VStack {
Text("Swift Cookbook")
Button(action: {
print("Set Action Here...")
}, label: {
Text("I'm going to perform an action")
})
}

Here is a block of code, which in SwiftUI terms is a View to be displayed. The view is a vertical stack—think UITableView, but at the same time don't think UITableView, as it's...

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 $15.99/month. Cancel anytime}