Skip to content

Instantly share code, notes, and snippets.

@mkj-is
Created February 1, 2018 15:29
Show Gist options
  • Save mkj-is/65ec4c7b160d64f0c265c8f93bbc8014 to your computer and use it in GitHub Desktop.
Save mkj-is/65ec4c7b160d64f0c265c8f93bbc8014 to your computer and use it in GitHub Desktop.
Dark mode inspectable
extension UIView {
@IBInspectable var ignoresInvertColors: Bool {
get {
if #available(iOS 11.0, *) {
return accessibilityIgnoresInvertColors
}
return false
}
set {
if #available(iOS 11.0, *) {
accessibilityIgnoresInvertColors = newValue
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment