class AppDelegate def application(application, didFinishLaunchingWithOptions:launchOptions) @window = UIWindow.alloc.initWithFrame(UIScreen.mainScreen.bounds) myNavController = RootController.alloc.init @window.rootViewController = UINavigationController.alloc.initWithRootViewController(myNavController) @window.rootViewController.wantsFullScreenLayout = true @window.makeKeyAndVisible true end end