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

Time:09-26

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

CodePudding user response:

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

  • Related