add button border and text color change to actionhandler setter.

This commit is contained in:
Kyle Matthew Hedden 2020-05-21 14:38:56 -04:00
parent 4949a30c63
commit 7bf03d9418

View File

@ -248,6 +248,8 @@
// Sets the color
if (color) {
self.button.layer.borderColor = color.CGColor;
[self.button setTitleColor:color forState:UIControlStateNormal];
[self.closeButton setTintColor:color];
}