Files
RubyMotion/sample/trollify/app/app_delegate.rb
2012-04-10 19:49:44 +02:00

10 lines
409 B
Ruby

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