TEAM LICENSES: Save money and learn new skills through a Hacking with Swift+ team license >>

How to make optional protocol methods

Swift version: 5.10

Paul Hudson    @twostraws   

By default, all methods listed in a Swift protocol must be implementing in a conforming type. However, there are two ways you can work around this restriction depending on your need.

The first option is to mark your protocol using the @objc attribute. While this means it can be adopted only by classes, it does mean you mark individual methods as being optional like this:

@objc protocol ObjcPrintable {
    @objc optional func canPrint() -> Bool
}

If possible, the second option is usually better: write default implementations of the optional methods that do nothing, like this:

protocol Printable {
    func canPrint() -> Bool
}

extension Printable {
    func canPrint() -> Bool {
        return true
    }
}

Remember, optional methods exist because you can provide sensible default behavior without them. In the above example it seems fair to make Printable things return true from canPrint() by default, because if someone wants to write an authentication layer for specific things they can implement their own version.

Hacking with Swift is sponsored by String Catalog.

SPONSORED Get accurate app localizations in minutes using AI. Choose your languages & receive translations for 40+ markets!

Localize My App

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

Available from iOS 8.0 – learn more in my book Swift Design Patterns

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: 3.0/5

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.