Control flow / Conditional statements / if/else statements

//runtime OS version check
if (@available(iOS 12, macOS 12, *)) {
    //iOS 12, macOS 12 or higher
else {
    //iOS 11, macOS 11 or below
}