So if we want to make all UIButtons have a red background, we can use UIButton.appearance().backgroundColor = UIColor.red
.
This is great and really convenient, but I'm wondering if there's a list of all the different traits/options we can modify for each control. I know I can type UIButton.appearance().
and find what I'm looking for from the auto complete but the problem is that it shows all the class members/functions. It'd be nice to see just the ones that relate to the appearance() call.
I tried searching but couldn't find anything, hopefully someone can help me out. Thanks!