Swift version: 5.6
One of my favorite Xcode features is the ability to have Xcode automatically check API availability for you, which means it will refuse to run code that is not available on the minimum iOS version you support.
Of course, there are times when you really do need to use a newer feature, for example if you want to use UIStackView
where it's available but otherwise show a message to users asking them to upgrade. For this, Swift has #available
, which lets you state that a certain block of code should only execute on specific versions of iOS.
To use the previous example, this code checks whether the user has iOS 9.0 or later on their device:
if #available(iOS 9, *) {
// use UIStackView
} else {
// show sad face emoji
}
Any code inside the // use UIStackView
block can be executed as if your deployment target were iOS 9.0.
If you want, you can mark whole functions or classes as requiring a specific iOS version by using @available
, like this:
@available(iOS 9, *)
func useStackView() {
// use UIStackView
}
SPONSORED Play is the first native iOS design tool created for designers and engineers. You can install Play for iOS and iPad today and sign up to check out the Beta of our macOS app with SwiftUI code export. We're also hiring engineers!
Sponsor Hacking with Swift and reach the world's largest Swift community!
Available from iOS 7.0
This is part of the Swift Knowledge Base, a free, searchable collection of solutions for common iOS questions.
Link copied to your pasteboard.