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:
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!
To use Invert Colors, open the Settings app, then tap Accessibility > Display & Text Size. Turn on Smart Invert or Classic Invert.
A true “dark mode” to change Apple’s mostly light-colored user interface like the option it has for menus and the dock on macOS is still absent. But in iOS 11, we get the next best thing with a new feature called ‘ Smart Invert Colors’. For many, this feature will satisfy their dark mode needs until an official feature is introduced.
Apple isn’t getting rid of the old invert colors option as some disabled users might prefer it, but it’s changing the name to “Classic Invert” as it introduces the new “Smart” mode.
Here’s how to set it up. What Is Smart Invert? Smart Invert is an Apple accessibility feature that inverts the colors on your screen (like a negative image), but with a twist. It’s “smart” because it usually prevents images, videos, and some apps that are already dark-colored from getting inverted.
To enable Smart Invert, open “Settings” and navigate to Accessibility > Display & Text Size. In “Display & Text Size” settings, scroll down until you see “Smart Invert.” Flip the switch beside it to turn it on. Your screen will immediately turn black. After that, exit Settings, and use your apps as usual.
See iOS 11 UIView
's property accessibilityIgnoresInvertColors.
Ignore smart invert for all UIImageViews. Set in app delegate
if #available(iOS 11.0, *) {
UIImageView.appearance().accessibilityIgnoresInvertColors = true
}
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 {
}
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With