Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-4164] iOS: NavBar Doesn't Update Properly When Touching "More" to Return

GitHub Issuen/a
TypeBug
PriorityHigh
StatusClosed
ResolutionFixed
Resolution Date2011-06-13T15:32:57.000+0000
Affected Version/sRelease 1.7.0
Fix Version/sSprint 2011-23, Release 1.7.1, Release 1.8.0
ComponentsiOS
Labelsenterprise
ReporterDawson Toth
AssigneeBlain Hamon
Created2011-05-20T14:19:17.000+0000
Updated2011-06-16T15:27:49.000+0000

Description

Problem

Given a tab group with more than 5 tabs, touching the "More" tab to return to the list of "More" results in the nav bar messing up. Let me quantify "messing up": the title disappears, and the back button still exists. It will be easier to understand what I mean if you run the sample code.

Sample Code

Drop the following in an app.js then do the following:

Touch the "More" tab

Touch "Tab 4"

Touch the "More" tab again (note: touch the TAB at the bottom of the screen, not the back button!)

Observe the nav bar

var tabGroup = Ti.UI.createTabGroup();
for (var i = 0; i < 6; i++) {
    tabGroup.addTab(Ti.UI.createTab({
        title: 'Tab ' + i,
        window: Ti.UI.createWindow({
            title:'Tab ' + i
        })
    }));
}
tabGroup.open();

Associated Helpdesk Ticket

http://appc.me/c/APP-492924

Comments

  1. Dawson Toth 2011-06-08

    The enterprise customer's expectation on this is that we get a patch for 1.7 in. Their deadline is approximately 3 weeks. Can I pester you (Reggie) for an update on this, and for some timelining / planning? I know we've got a release going on, but that doesn't change our customer's demands. Just an FYI I am going to ask the same question on [TIMOB-4339]!
  2. Kincy Clark 2011-06-13

    We are requesting that this be pulled into 1.7.1. Please advise after this afternoons meeting
  3. Blain Hamon 2011-06-13

    As the commit mentions, a small little snippet was throwing Navbar off. All unneeded fix attempts cleaned up, snippet was only bit necessary.
  4. Thomas Huelbert 2011-06-16

    against 1.7.1 GA

JSON Source