I am making a dark mode setting for my app.
Currently, the dark mode is nearly working on a single scene. While adding the dark mode though, I noticed that I need a lot of IBOutletCollection to properly change the colors that I want (ex. labels should become white, background black, the title should be a very dark gray...).
Now, this seems inefficient and time consuming. Isn't there a way to load everything, for()
it, and set the correct color for each specific object? (If there is, how?)