Skip to content

Instantly share code, notes, and snippets.

@gabu
Created January 6, 2012 03:28
Show Gist options
  • Save gabu/1568798 to your computer and use it in GitHub Desktop.
Save gabu/1568798 to your computer and use it in GitHub Desktop.
グローバル変数を汚したくなくてその場でrequireして、さらにnewできるかなーと思って書いたら動いてビビった。Titanium 1.8.0.1にて。
var navGroup, rootWindow;
Ti.UI.setBackgroundColor('#fff');
rootWindow = Ti.UI.createWindow();
navGroup = Ti.UI.iPhone.createNavigationGroup({
window: new (require('ui/title_window').TitleWindow)()
});
rootWindow.add(navGroup);
rootWindow.open();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment