UPGRADE YOUR SKILLS: Learn advanced Swift and SwiftUI on Hacking with Swift+! >>

What is optional chaining?

Swift version: 5.6

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
    }
}
Hacking with Swift is sponsored by Essential Developer

SPONSORED Join a FREE crash course for mid/senior iOS devs who want to achieve an expert level of technical and practical skills – it’s the fast track to being a complete senior developer! Hurry up because it'll be available only until April 28th.

Click to save your free spot now

Sponsor Hacking with Swift and reach the world's largest Swift community!

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.