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

Doing it later with defer

Typically, when we call a function, control passes from the call site to the function, then the statements within the function are executed sequentially until either the end of the function or until a return statement. Control then returns to the call site. In the following diagram, the print statements are executed in the order 1, 2, then 3:

Figure 3.2 – print statement

Sometimes, it can be useful to execute some code after the function has returned, but before control has been returned to the call site. This is the purpose of Swift's defer statement. In the following example, step 3 is executed after step 2, even though it is defined above it:

Figure 3.3 – defer statement

In this recipe, we will explore how to use defer, and when it can be helpful.

Getting ready

A defer statement can be useful to change the state once a function's execution is complete or to clean up values that are no longer needed. Let's look at an example of...

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}