Swift Conditionals: `switch`
This tutorial belongs to the Swift series
Switch statements are a handy way to create a conditional with multiple options:
var name = "Roger"
switch name {
case "Roger":
print("Hello, mr. Roger!")
default:
print("Hello, \(name)")
}
When the code of a case ends, the switch exits automatically.
A switch in Swift needs to cover all cases. If the tag, name
in this case, is a string that can have any value, we need to add a default
case, mandatory.
Otherwise with an enumeration, you can simply list all the options:
enum Animal {
case dog
case cat
}
var animal: Animal = .dog
switch animal {
case .dog:
print("Hello, dog!")
case .cat:
print("Hello, cat!")
}
A case can be a Range:
var age = 20
switch age {
case 0..<18:
print("You can't drive!!")
default:
print("You can drive")
}
→ Get my Swift Handbook
→ I wrote 17 books to help you become a better developer:
- C Handbook
- Command Line Handbook
- CSS Handbook
- Express Handbook
- Git Cheat Sheet
- Go Handbook
- HTML Handbook
- JS Handbook
- Laravel Handbook
- Next.js Handbook
- Node.js Handbook
- PHP Handbook
- Python Handbook
- React Handbook
- SQL Handbook
- Svelte Handbook
- Swift Handbook
Also, JOIN MY CODING BOOTCAMP, an amazing cohort course that will be a huge step up in your coding career - covering React, Next.js - next edition February 2025