Titanium JIRA Archive
Appcelerator Community (AC)

[AC-1091] Tab bar has a translucent white stripe in the middle

GitHub Issuen/a
TypeBug
Priorityn/a
StatusClosed
ResolutionDuplicate
Resolution Date2014-03-31T17:17:03.000+0000
Affected Version/sn/a
Fix Version/sn/a
ComponentsTitanium SDK & CLI
Labelscore, ios, regression
ReporterDavid He
AssigneeRitu Agrawal
Created2014-03-31T10:31:30.000+0000
Updated2016-03-08T07:37:26.000+0000

Description

Code below can reproduce this issue.
var self = Ti.UI.createTabGroup();
var win1 = Ti.UI.createWindow({
	title : "home",
	backgroundColor : 'white'
});

var win2 = Ti.UI.createWindow({
	title : "settings",
	backgroundColor : 'white'
});

var tab1 = Ti.UI.createTab({
	title : L('home'),
	icon : '/images/KS_nav_ui.png',
	window : win1
});

var tab2 = Ti.UI.createTab({
	title : L('settings'),
	icon : '/images/KS_nav_views.png',
	window : win2
});

self.addTab(tab1);
self.addTab(tab2);

self.open();
This code displays bar properly on TiSDK 3.2.2 but with both iOS SDK and iOS simulator 7.0.3.

Attachments

FileDateSize
Screen Shot 2014-03-31 at 9.22.37 PM.png2014-03-31T10:31:30.000+000056183

Comments

  1. David He 2014-03-31

    To reproduce this issue, simply run the app and switch to unfocused tab. It occurs on actual device as well
  2. Ritu Agrawal 2014-03-31

    Thanks for reporting this issue. This issue is a duplicate of TIMOB-16521. Please follow TIMOB-16521 for latest updates.

JSON Source