Globally set background color of buttons, except accessory buttons in UITableView

450 Views Asked by At

I am using the below code to make all my buttons in an application the same color. However the accessory icon in the UITTableView row also has it. Is there a way to ignore it in the table view?

[[UIButton appearance] setBackgroundColor:[UIColor purpleColor]];
2

There are 2 best solutions below

2
On BEST ANSWER

A UIView conforms to the UIAppearanceContainer protocol.

So you should use appearanceWhenContainedIn: to distinct buttons depending on where they are contained in.

[[UIButton appearance] setBackgroundColor:[UIColor purpleColor]];    
[[UIButton appearanceWhenContainedIn:[UITableView class], nil] setBackgroundColor:nil];

It would be best to use the UITableViewCell subclass instead of the table view.

0
On

You can use the

[[UIButton appearanceWhenContainedIn: [UITableView class]] setBackgroundColor:[UIColor differentColor]];