iOS Is it possible to get information about current state of "Color Filter"?

Viewed 20

I want to write an application where I need to know whether the device is in "grayscale" or normal mode.

1 Answers

You can check it using UIAccessibility.isGrayscaleEnabled . Check the full documentation here.

Related