Skip to content

Instantly share code, notes, and snippets.

@vialyx
Created April 20, 2018 12:41
Show Gist options
  • Save vialyx/03ab6a4d8eac973bc8bf588b7b45928a to your computer and use it in GitHub Desktop.
Save vialyx/03ab6a4d8eac973bc8bf588b7b45928a to your computer and use it in GitHub Desktop.
// MARK: API availability
var color: UIColor?
if #available(iOS 11, *) {
// Use iOS 11 APIs on iOS
color = UIColor(named: "green_color_from_asset_folder")
} else {
// Fall back to earlier iOS APIs
color = UIColor.green
}
/*
Use this construction to check availability.
Use modern APIs where it possible.
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment