From d29fd664785e5195e0e1bb2856baacbe37cd9993 Mon Sep 17 00:00:00 2001 From: vakrilov Date: Thu, 29 Oct 2015 18:19:20 +0200 Subject: [PATCH] TintCololor should be synced with selectedColor --- ui/tab-view/tab-view.ios.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/tab-view/tab-view.ios.ts b/ui/tab-view/tab-view.ios.ts index b791158b9..2b4b93a87 100644 --- a/ui/tab-view/tab-view.ios.ts +++ b/ui/tab-view/tab-view.ios.ts @@ -325,7 +325,7 @@ export class TabView extends common.TabView { var tabBar = this.ios.tabBar; - tabBar.tintColor = this.color ? this.color.ios : null; + tabBar.tintColor = this.selectedColor ? this.selectedColor.ios : null; var states = getTitleAttributesForStates(this); for (var i = 0; i < this.items.length; i++) {