mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-04-17 12:20:25 +08:00
10 lines
386 B
Ruby
10 lines
386 B
Ruby
class AppDelegate
|
|
def application(application, didFinishLaunchingWithOptions:launchOptions)
|
|
application.setStatusBarStyle(UIStatusBarStyleBlackOpaque)
|
|
@window = UIWindow.alloc.initWithFrame(UIScreen.mainScreen.bounds)
|
|
@window.rootViewController = UINavigationController.alloc.initWithRootViewController(ViewController.new)
|
|
@window.makeKeyAndVisible
|
|
true
|
|
end
|
|
end
|