How to tell Smart Invert in iOS 11 not to invert my app colors and detect if it is enabled?

10,883

Solution 1

See iOS 11 UIView's property accessibilityIgnoresInvertColors.

Solution 2

Ignore smart invert for all UIImageViews. Set in app delegate

if #available(iOS 11.0, *) {
   UIImageView.appearance().accessibilityIgnoresInvertColors = true
}

Solution 3

Swift 4.2

To check if it smart invert is currently enabled you can use UIAccessibility.isInvertColorsEnabled. You can also get a notification when it changes by observing UIAccessibility.invertColorsStatusDidChangeNotification:

NotificationCenter.default.addObserver(forName: UIAccessibility.invertColorsStatusDidChangeNotification,
                                       object: nil,
                                       queue: OperationQueue.main) {
                                        [weak self] _ in
  
  if UIAccessibility.isInvertColorsEnabled {
    // smart invert is enabled
  } else {
   
  }
}
Share:
10,883
LWJ
Author by

LWJ

Updated on June 04, 2022

Comments

  • LWJ
    LWJ about 2 years

    iOS 11 has a new feature called "Smart Invert Colors", and I want to take advantage of that in my app. I already have my own dark mode implemented in my app, so I'll do the "color inversion" process myself when Smart Invert is enabled. What I want to know is:

    • How do I tell iOS 11 that the app has a dark interface and don't invert colours, similar to the iOS Clock app in iOS 10+?
    • How do I detect which kind of Invert Colors, specifically "Smart Invert" or "Classic Invert", is enabled?

    I've searched everywhere at Google, StackOverflow, and Apple Developer Website for some time now and still couldn't find the answer.

    Thanks in advance!

    Update:

    Thanks to @Toma's answer, I successfully managed to prevent iOS 11 from inverting views in my app. Now I have another problem...

    For the detection part, it appears that UIAccessibility.isInvertColorsEnabled (Swift 4.2) will only return true if Smart Invert is on (iOS 11). At least it's enough for me, for now. I’m now wondering how to find out when Classic Invert is on. Post an updated answer below if you know how to do so! Thanks!