Files
RubyMotion/sample/hello/app/app_delegate.rb
Laurent Sansonetti 6cf7150783 clean up the samples
2012-02-28 14:41:27 +01:00

10 lines
345 B
Ruby

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