| GitHub Issue | n/a |
| Type | Bug |
| Priority | High |
| Status | Closed |
| Resolution | Fixed |
| Resolution Date | 2013-08-27T21:04:16.000+0000 |
| Affected Version/s | Release 3.1.2 |
| Fix Version/s | 2013 Sprint 18, 2013 Sprint 18 API, Release 3.1.3, Release 3.2.0 |
| Components | iOS |
| Labels | IOS7, NavigationGroup, Tab, module_tabgroup, qe-closed-3.1.3, qe-port, qe-testadded |
| Reporter | Thomas Neerup |
| Assignee | Vishal Duggal |
| Created | 2013-08-22T09:24:04.000+0000 |
| Updated | 2014-04-22T07:03:07.000+0000 |
*Steps to Reproduce*
1. Create new mobile project (Alloy)
2. Paste attached index.xml into project
3. Run project
*Actual Result*
When running in iOS 7, the blue window in the NavigationGroup is displayed with wrong height. It works on iOS 6.
*Expected Result*
The blue window int the NavigationGroup should fill the tab.
Reproduced the issue with: Appcelerator Studio, build: 3.1.3.201308201707 Titanium SDK, build: 3.1.3.v20130822140128 CLI: 3.1.2 alloy: 1.2.1-cr Device: iPhone5 iOS7
Non Alloy Test Case
var tabGrp = Ti.UI.createTabGroup({ backgroundColor:'white', orientationModes:[Ti.UI.PORTRAIT,Ti.UI.LANDSCAPE_LEFT,Ti.UI.LANDSCAPE_RIGHT] }) var win1 = Ti.UI.createWindow({ backgroundColor:'red', navBarHidden:true, }) var win2 = Ti.UI.createWindow({ backgroundColor:'green', title:'two' }) var win3 = Ti.UI.createWindow({ backgroundColor:'blue', title:'one' }) var navGrp = Ti.UI.iPhone.createNavigationGroup({ window:win3 }) win1.add(navGrp); var tab1 = Ti.UI.createTab({ window:win1, title:'TAB1' }) var tab2 = Ti.UI.createTab({ window:win2, title:'TAB2' }) tabGrp.addTab(tab1) tabGrp.addTab(tab2) tabGrp.open();PR against master https://github.com/appcelerator/titanium_mobile/pull/4606
MASTER PR MERGED [~vduggal] go ahead and make the back port.
Backport PR https://github.com/appcelerator/titanium_mobile/pull/4613
Tested and verified fixed with: Mac osx 10.8.4 Mountain Lion Appcelerator Studio, build: 3.1.3.201308252005 Titanium SDK, build:3.1.3.v20130828104626 alloy:1.2.1 CLI:3.1.2 Xcode5-DP6 Devices: Ipad4 iOS 7 beta6(11A4449d) iPnone5 iOS 7 beta6 Note: screenshot attached (fixed.png)