From 9b5b256594631526bf843dcf9a901a86e43cc3cf Mon Sep 17 00:00:00 2001 From: Kevin G Christiano Date: Wed, 4 Sep 2019 09:55:05 -0400 Subject: [PATCH] Fixes Alert view color issue. --- MVMCoreUI/TopAlert/MVMCoreUITopAlertMainView.m | 1 + 1 file changed, 1 insertion(+) diff --git a/MVMCoreUI/TopAlert/MVMCoreUITopAlertMainView.m b/MVMCoreUI/TopAlert/MVMCoreUITopAlertMainView.m index fa26a7f7..eab759e8 100644 --- a/MVMCoreUI/TopAlert/MVMCoreUITopAlertMainView.m +++ b/MVMCoreUI/TopAlert/MVMCoreUITopAlertMainView.m @@ -173,6 +173,7 @@ if (closeButton && !self.closeButton) { self.closeButton = [self addCloseButtonWithAnimationDelegate:animationDelegate]; + [self.closeButton setTintColor:[UIColor whiteColor]]; } else if (!closeButton && self.closeButton) { [self.closeButton removeFromSuperview]; self.closeButton = nil;