Files
RubyMotion/sample/gesture_table/app/app_delegate.rb
2012-03-28 15:57:54 +02:00

10 lines
386 B
Ruby

class AppDelegate
def application(application, didFinishLaunchingWithOptions:launchOptions)
application.setStatusBarStyle(UIStatusBarStyleBlackOpaque)
@window = UIWindow.alloc.initWithFrame(UIScreen.mainScreen.bounds)
@window.rootViewController = UINavigationController.alloc.initWithRootViewController(ViewController.new)
@window.makeKeyAndVisible
true
end
end