WWDC23 SALE: Save 50% on all my Swift books and bundles! >>

How to check multiple conditions

Paul Hudson    @twostraws   

Updated for Xcode 14.2

Swift gives us && and || for checking multiple conditions at the same time, and when used with just two conditions they are fairly straightforward.

As an example, imagine we were running a forum where users could post messages, and delete any messages they owned. We might write code like this:

if isOwner == true || isAdmin == true {
    print("You can delete this post")
}

Where things get more confusing is when we want to check several things. For example, we could say that regular users can delete messages only we allowed them, but admins can always delete posts. We might write code like this:

if isOwner == true && isEditingEnabled || isAdmin == true {
    print("You can delete this post")
}

But what is that trying to check? What order are the && and || checks executed? It could mean this:

if (isOwner == true && isEditingEnabled) || isAdmin == true {
    print("You can delete this post")
}

That says “if we’re the owner and editing is enabled you can delete the post, or if you’re an admin you can delete the post even if you don’t own it.” That makes sense: folks can delete their own posts if editing is allowed, but admins can always delete posts.

However, you might also read it like this:

if isOwner == true && (isEditingEnabled || isAdmin == true) {
    print("You can delete this post")
}

And now it means something quite different: “if you’re the owner of the post, and either editing is enabled or you’re the admin, then you can delete the post.” This means admins can’t delete posts they don’t own, which wouldn’t make sense.

Obviously Swift doesn’t like ambiguity like this, so it will always interpret the code as if we had written this:

if (isOwner == true && isEditingEnabled) || isAdmin == true {
    print("You can delete this post")
}

However, honestly it’s not a nice experience to leave this to Swift to figure out, which is why we can insert the parentheses ourselves to clarify exactly what we mean.

There is no specific advice on this, but realistically any time you mix && and || in a single condition you should almost certainly use parentheses to make the result clear.

Save 50% in my WWDC23 sale.

SAVE 50% To celebrate WWDC23, all our books and bundles are half price, 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!

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

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.