mirror of
https://github.com/zhigang1992/RubyMotion-PixateFreestyle.git
synced 2026-01-12 22:51:56 +08:00
12 lines
386 B
Ruby
12 lines
386 B
Ruby
class AppDelegate
|
|
def application(application, didFinishLaunchingWithOptions:launchOptions)
|
|
PixateFreestyle.initializePixateFreestyle
|
|
@window = UIWindow.alloc.initWithFrame(UIScreen.mainScreen.bounds)
|
|
@window.rootViewController = HelloWorldController.alloc.init
|
|
@window.rootViewController.wantsFullScreenLayout = true
|
|
@window.makeKeyAndVisible
|
|
|
|
true
|
|
end
|
|
end
|