Skip to content

Commit

Permalink
Restore status bar
Browse files Browse the repository at this point in the history
  • Loading branch information
nlehuen committed May 10, 2012
1 parent d779f64 commit babcc22
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions app/app_delegate.rb
Expand Up @@ -2,10 +2,12 @@ class AppDelegate
def application(application, didFinishLaunchingWithOptions:launchOptions) def application(application, didFinishLaunchingWithOptions:launchOptions)
@window = UIWindow.alloc.initWithFrame(UIScreen.mainScreen.bounds) @window = UIWindow.alloc.initWithFrame(UIScreen.mainScreen.bounds)
@window.rootViewController = CalculatorViewController.alloc.init @window.rootViewController = CalculatorViewController.alloc.init
@window.rootViewController.wantsFullScreenLayout = true
# @window.rootViewController.wantsFullScreenLayout = true

@window.makeKeyAndVisible @window.makeKeyAndVisible


UIApplication.sharedApplication.setStatusBarHidden true, withAnimation:UIStatusBarAnimationSlide # UIApplication.sharedApplication.setStatusBarHidden true, withAnimation:UIStatusBarAnimationSlide


return true return true
end end
Expand Down

0 comments on commit babcc22

Please sign in to comment.