Files
RubyMotion-PixateFreestyle/Examples/HelloWorld/app/app_delegate.rb
2014-02-24 16:03:26 -08:00

12 lines
339 B
Ruby

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