From 2d0faa2e3a37515ebed5633b145b396b0adadc75 Mon Sep 17 00:00:00 2001 From: Zhigang Fang Date: Fri, 31 Oct 2014 21:19:42 +0800 Subject: [PATCH] Add initializing on Appdelegate --- Examples/HelloWorld/app/app_delegate.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Examples/HelloWorld/app/app_delegate.rb b/Examples/HelloWorld/app/app_delegate.rb index 4c8049e..7fdb6d1 100644 --- a/Examples/HelloWorld/app/app_delegate.rb +++ b/Examples/HelloWorld/app/app_delegate.rb @@ -1,7 +1,7 @@ class AppDelegate def application(application, didFinishLaunchingWithOptions:launchOptions) - - @window = UIWindow.alloc.initWithFrame(UIScreen.mainScreen.bounds) + PixateFreestyle.initializePixateFreestyle + @window = UIWindow.alloc.initWithFrame(UIScreen.mainScreen.bounds) @window.rootViewController = HelloWorldController.alloc.init @window.rootViewController.wantsFullScreenLayout = true @window.makeKeyAndVisible