mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-05-25 13:46:16 +08:00
10 lines
345 B
Ruby
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
|