class AppDelegate
def application(application, didFinishLaunchingWithOptions:launchOptions)
@window = UIWindow.alloc.initWithFrame(App.bounds)
@window.makeKeyAndVisible
@controller = ViewController.alloc.initWithNibName("ViewController", bundle:nil)
@window.rootViewController = @controller
true
end
end
这和直接用 Objective-C 写真心木多大区别啊。