I'm writing an iPhone app using Appcelerator Titanium Mobile. I am hiding and showing the tab group based on what window has focus.

dashWin.addEventListener("focus",function(e) {
    if (dashWin.tabGroupVisible == true) {
        dashWin.tabGroupVisible=false;
        tabGroup.animate({bottom:-50,duration:500});
    }
});

The code above hides the tab group when dashWin receives a focus event. However, I see this message in the Titanium console when the event fires while running in the iPhone simulator:

Finishing up a navigation transition in an unexpected state. Navigation Bar subview tree might get corrupted.

A Google search turns up one result: Another StackOverflow question that may have a hint as to what's going on.

link|improve this question

Additional information: I only get the message when I use the Back button on a child window to return the tab to dashWin. If I use a tab to return to dashWin, I do not get the message. – Trott Mar 25 '11 at 17:03
feedback

1 Answer

up vote 0 down vote accepted

Usually a tab group acts as the root of your app's navigation. When a user taps a tab, that tab's window is focused.

Next, when a user triggers an action that requires a new window appear, it usually appears either modally or on top (in the navigation stack sense) of the current window. In the latter case, tell the current tab to open the new window.

If you set the tabBarHidden property to false (when you create the new window), the tab bar will be hidden for you when the new window is opened by the current tab.

Will this more standard approach work for you?

link|improve this answer
I was unable to make the tab bar reappear on a child page in Titanium if I created it as hidden. At least that's my recollection. It was a week ago now and it seems like an eternity. But your answer implies, correctly, that I was creating a non-standard navigation experience for the user. I have since ditched that idea and am not using tabs at all. I looked at interfaces at pttrns.com for similar apps and realized the folly of my approach. Still, I'm curious exactly what the error message means, what one could do (if anything) about it, and why it seems to be very rare. – Trott Apr 2 '11 at 4:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.