class AppDelegate attr_reader :window def application(application, didFinishLaunchingWithOptions:launchOptions) @window = UIWindow.alloc.initWithFrame(UIScreen.mainScreen.bounds) @window.rootViewController = MainNavigationController.alloc.init @window.makeKeyAndVisible true end end