Stupid question- can't see navbar on window?
I must be missing something completely obvious here, but I can't get the navbar to show up for my window. I just have a single window for my iPad app, that I want to fill the screen. This is the code I'm using:
var masterWin = Ti.UI.createWindow({
barColor:"#000000",
backgroundColor:"#333333",
title:"Vehicles"
});
masterWin.open();
2 Answers
-
Accepted Answer
The nav bar is only available within a tab group or the lower level navigation group.
-
Thanks! I added it to a navigation group and it works perfectly!