Created
July 2, 2020 03:44
-
-
Save bob910078/66538ccd32b99f8179b595fb33746b9b 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
private func adaptToUserInterfaceStyle() { | |
label.backgroundColor = UIColor.brown.withAlphaComponent(0.3) | |
label.textColor = UIColor.brown | |
if #available(iOS 12.0, *) { | |
if contentView.traitCollection.userInterfaceStyle == .dark { | |
label.backgroundColor = UIColor.cyan.withAlphaComponent(0.3) | |
label.textColor = UIColor.cyan | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment