Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Medium
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 2013 Sprint 22, 2013 Sprint 22 API, Release 3.2.0
-
Component/s: iOS
-
Labels:
-
Environment:
Appcelerator Studio, build: 3.1.3.201309132423
Titanium SDK, build: 3.1.3GA
iPhone simulator + iPhone 4 iOS 7.0
Xcode5
Description
The second time you open tab 2 the title bar height is incorrect.
Code to reproduce the isse:
var win1 = Titanium.UI.createWindow({
|
navBarHidden : true, // the bug happens with or without navbar
|
fullscreen : true
|
});
|
|
var win2 = Titanium.UI.createWindow({
|
title: 'Window 2'
|
});
|
|
var tab1 = Titanium.UI.createTab({
|
title : 'Tab 1',
|
window : win1
|
});
|
|
var tab2 = Titanium.UI.createTab({
|
title : 'Tab 2',
|
window : win2
|
});
|
|
var tabGroup = Ti.UI.createTabGroup();
|
|
tabGroup.addTab(tab1);
|
tabGroup.addTab(tab2);
|
tabGroup.open();
|
Attachments
Issue Links
- relates to
-
TIMOB-15353 iOS7: Window moves incorrectly when in-call/hotspot/etc. status bar is showing
-
- Closed
-