[TIMOB-2345] On iOS hidden tab bar cannot be shown
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | Medium |
Status | Closed |
Resolution | Invalid |
Resolution Date | 2011-04-15T03:17:17.000+0000 |
Affected Version/s | n/a |
Fix Version/s | Release 1.5.0 |
Components | iOS |
Labels | defect, ios, ipad, iphone, rplist, window |
Reporter | ctredway |
Assignee | Blain Hamon |
Created | 2011-04-15T03:17:17.000+0000 |
Updated | 2017-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
Actually this is Apples intended behavior.
Closed as invalid.