See subject. Is this possible? When I add a tint color with UIButton Appearance... it applies to all UIButtons, not just "System" buttons but even custom ones.
I just want to be able to set a couple of destructive buttons with red text while keeping a customizable tint color for everything else.
Check out UIAppearance appearanceWhenContainedIn
.
This one provides way to customize appearance whenever your control is contained within specific view, such as UIToolbar or UINavigationBar. You may check up your own parent view class which contains your custom UIButton.