Skip to content

Instantly share code, notes, and snippets.

@bob910078
Created July 2, 2020 03:44
Show Gist options
  • Save bob910078/66538ccd32b99f8179b595fb33746b9b to your computer and use it in GitHub Desktop.
Save bob910078/66538ccd32b99f8179b595fb33746b9b to your computer and use it in GitHub Desktop.
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