mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-04-18 12:13:28 +08:00
10 lines
409 B
Ruby
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
|