Created
April 20, 2018 12:41
-
-
Save vialyx/03ab6a4d8eac973bc8bf588b7b45928a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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