Sign In Start Free Trial
Account

Add to playlist

Create a Playlist

Modal Close icon
You need to login to use this feature.
  • Book Overview & Buying Mastering Swift
  • Table Of Contents Toc
Mastering Swift

Mastering Swift

By : Jon Hoffman
5 (2)
close
close
Mastering Swift

Mastering Swift

5 (2)
By: Jon Hoffman

Overview of this book

If you are a developer that learns best by looking at, and working with, code, then this book is for you. A basic understanding of Apple's tools is beneficial but not mandatory.
Table of Contents (17 chapters)
close
close
16
Index

Changing functionality


Closures also give us the ability to change the functionality of classes on the fly. We saw in Chapter 9, Working with Generics that generics gave us the ability to write functions that are valid for multiple types. With closures, we are able to write functions and classes whose functionality can change based on the closure that is passed into it as a parameter. In this section, we will show how to write a function whose functionality can be changed with a closure.

Let's begin by defining a class that will be used to demonstrate how to swap out functionality. We will name this class TestClass:

class TestClass {
  typealias getNumClosure = ((Int, Int) -> Int)
  
  var numOne = 5
  var numTwo = 8
  
  var results = 0
  func getNum(handler: getNumClosure) -> Void{
    results = handler(numOne,numTwo)
    return results
  }
}

We begin this class by defining a type alias for our closure that is named getNumClosure. Any closure defined as a getNumClosure closure will...

CONTINUE READING
83
Tech Concepts
36
Programming languages
73
Tech Tools
Icon Unlimited access to the largest independent learning library in tech of over 8,000 expert-authored tech books and videos.
Icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Icon 50+ new titles added per month and exclusive early access to books as they are being written.
Mastering Swift
notes
bookmark Notes and Bookmarks search Search in title playlist Add to playlist font-size Font size

Change the font size

margin-width Margin width

Change margin width

day-mode Day/Sepia/Night Modes

Change background colour

Close icon Search
Country selected

Close icon Your notes and bookmarks

Confirmation

Modal Close icon
claim successful

Buy this book with your credits?

Modal Close icon
Are you sure you want to buy this book with one of your credits?
Close
YES, BUY

Submit Your Feedback

Modal Close icon
Modal Close icon
Modal Close icon