BLACK FRIDAY: Save 50% on all my Swift books and bundles! >>

What is optional chaining?

Swift version: 5.10

Paul Hudson    @twostraws   

Optional chaining is a Swift feature that allows execution of a statement to stop and return nil at any point. For example, all views have an optional superview property that stores whichever UIView contains it, all UIView has an optional gestureRecognizer array that stores the gesture recognizers it has, and all arrays have an optional first property that returns the first item.

Optional chaining allows us to put those three optionals together like this:

let firstParentRecognizer = view.superview?.gestureRecognizers?.first

So, superview is optional, gestureRecognizers is optional, and first is optional, but the end result – firstParentRecognizer will be a simple UIGestureRecognizer? rather than a triple optional. The optional chaining – the two question marks – mean that if superview is nil then firstParentRecognizer gets set to nil and the rest of the statement is ignored, and the same is true of gestureRecognizers.

Without optional chaining we’d need to use a pyramid of if let statements, like this:

if let superview = view.superview {
    if let recognizers = superview.gestureRecognizers {
        let firstParentRecognizer = recognizers.first
    }
}
Save 50% in my WWDC sale.

SAVE 50% All our books and bundles are half price for Black Friday, so you can take your Swift knowledge further without spending big! Get the Swift Power Pack to build your iOS career faster, get the Swift Platform Pack to builds apps for macOS, watchOS, and beyond, or get the Swift Plus Pack to learn advanced design patterns, testing skills, and more.

Save 50% on all our books and bundles!

Available from iOS 8.0

Similar solutions…

About the Swift Knowledge Base

This is part of the Swift Knowledge Base, a free, searchable collection of solutions for common iOS questions.

BUY OUR BOOKS
Buy Pro Swift Buy Pro SwiftUI Buy Swift Design Patterns Buy Testing Swift Buy Hacking with iOS Buy Swift Coding Challenges Buy Swift on Sundays Volume One Buy Server-Side Swift Buy Advanced iOS Volume One Buy Advanced iOS Volume Two Buy Advanced iOS Volume Three Buy Hacking with watchOS Buy Hacking with tvOS Buy Hacking with macOS Buy Dive Into SpriteKit Buy Swift in Sixty Seconds Buy Objective-C for Swift Developers Buy Beyond Code

Was this page useful? Let us know!

Average rating: 5.0/5

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.