[TIMOB-28136] iOS: tintColor in tabGroup does not work
	
	
| GitHub Issue | n/a | 
|---|
| Type | Bug | 
|---|
| Priority | Critical | 
|---|
| Status | Open | 
|---|
| Resolution | Unresolved | 
|---|
| Affected Version/s | n/a | 
|---|
| Fix Version/s | n/a | 
|---|
| Components | iOS | 
|---|
| Labels | n/a | 
|---|
| Reporter | Andreas Pingas | 
|---|
| Assignee | Vijay Singh | 
|---|
| Created | 2020-09-07T20:12:44.000+0000 | 
|---|
| Updated | 2021-10-07T10:11:35.000+0000 | 
|---|
Description
	tintColor in tabGroup as it is described in the documentation, as you can see in the image below, tintColor is set to ‘#FFFFFF’. It only works properly on version  9.0.3.GA.
Please advice. Thank you in advance.
Attachments
 
Hi [~andreas.pingas]. Could you provide a complete code sample that demonstrates this problem?
var window1 = Ti.UI.createWindow({ title:'Window 1' }); var window2= Ti.UI.createWindow({ title:'Window 2' }); var tab1 = Ti.UI.createTab({ title:'Tab 1', icon:'/images/ic_action_desktop_windows.png', window:window1 }); var tab2 = Ti.UI.createTab({ title:'Tab 2', icon:'/images/ic_action_today.png', window:window2 }); var tabGroup = Ti.UI.createTabGroup({ tabs:[tab1, tab2], backgroundColor:'#FFFFFF', tabsBackgroundColor:'#000000', barColor:'#000000', navTintColor:'#FFFFFF', tintColor:'#FFFFFF', activeTintColor:'#FF0000', titleColor:'#FFFFFF', activeTitleColor:'#FF0000', style:Ti.UI.Android.TABS_STYLE_BOTTOM_NAVIGATION }); tabGroup.open();I can confirm this codesample doesn't work on iOS with 9.1.0.GA but does on Android. However, I couldn't get this to work on 9.0.3.GA either.
[~andreas.pingas] 1. Is it happening on all iOS versions or any particular. I guess iOS < 13.0. And are you sure it is working on sdk 9.0.3.GA? 2. Are you talking about tintColor or activeTintColor? 3. Can you update screenshots with name e.g correct_image and incorrect_image? It'll help in understand the issue, what you are talking about. Thanks!
How is this not fixed from a year ago? Using TabGroups with iOS is a complete nightmare -- basically native implementation and just doesn't work -- I have to use a combination of properties that don't follow the documentation just to get the icon and active text selected, then can't change the inactive text color. This allows me to have a red icon and red active text, black icon but default text color -- I can't change it but this doesn't follow any conventions. If I don't set tab tintcolor to black it comes up red for inactive tab icons -- it's ridiculous we can't use a native tabgroup properly!
"TabGroup": { activeTintColor: "#C00014", tintColor: "#C00014", tabsBackgroundColor: "#fff", } "Tab": { tintColor: "#000", }