Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-2345] On iOS hidden tab bar cannot be shown

GitHub Issuen/a
TypeBug
PriorityMedium
StatusClosed
ResolutionInvalid
Resolution Date2011-04-15T03:17:17.000+0000
Affected Version/sn/a
Fix Version/sRelease 1.5.0
ComponentsiOS
Labelsdefect, ios, ipad, iphone, rplist, window
Reporterctredway
AssigneeBlain Hamon
Created2011-04-15T03:17:17.000+0000
Updated2017-03-02T21:04:47.000+0000

Description

The following code shows this:

var win = Ti.UI.currentWindow;

var win_btn = Ti.UI.createButton({

title:'new win',
width:100,
height:45,
top:0,
left:0

});

win_btn.addEventListener('click',function(e){

var newWin = Ti.UI.createWindow({tabBarHidden:false,backgroundColor:'#0000FF'});
newWin.tabBarHidden = false;
Ti.UI.currentTab.open(newWin);

});

win.add(win_btn);

HD Ticket:
http://developer.appcelerator.com/helpdesk/view/53991">http://developer.appcelerator.com/helpdesk/view/53991

Comments

  1. ctredway 2011-04-15

    Actually this is Apples intended behavior.

  2. Lee Morris 2017-03-02

    Closed as invalid.

JSON Source