From 55667dc3b74c6cdfa1c77f1b11ad56fe26aed527 Mon Sep 17 00:00:00 2001 From: "Pfeil, Scott Robert" Date: Fri, 14 Aug 2020 15:49:39 -0400 Subject: [PATCH] code clean --- .../Molecules/HorizontalCombinationViews/TabBar.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/MVMCoreUI/Atomic/Molecules/HorizontalCombinationViews/TabBar.swift b/MVMCoreUI/Atomic/Molecules/HorizontalCombinationViews/TabBar.swift index 2b87daf8..1cf06325 100644 --- a/MVMCoreUI/Atomic/Molecules/HorizontalCombinationViews/TabBar.swift +++ b/MVMCoreUI/Atomic/Molecules/HorizontalCombinationViews/TabBar.swift @@ -40,9 +40,9 @@ import Foundation if #available(iOS 13.0, *) { let appearance = UITabBarAppearance() appearance.backgroundColor = model.backgroundColor?.uiColor - setTabBarItemColors(appearance.stackedLayoutAppearance, model: model) - setTabBarItemColors(appearance.inlineLayoutAppearance, model: model) - setTabBarItemColors(appearance.compactInlineLayoutAppearance, model: model) + set(tabItemAppearance: appearance.stackedLayoutAppearance, model: model) + set(tabItemAppearance: appearance.inlineLayoutAppearance, model: model) + set(tabItemAppearance: appearance.compactInlineLayoutAppearance, model: model) standardAppearance = appearance } else { // Fallback on earlier versions