Sha256: c8cffc7a3cb1b961f092407c2c773ca89053ecc6b8328a6e57f2b0f871c97635

Contents?: true

Size: 458 Bytes

Versions: 12

Compression:

Stored size: 458 Bytes

Contents

class AppDelegate

  def application(application, didFinishLaunchingWithOptions:launchOptions)
    return true if RUBYMOTION_ENV == 'test'

    application.setStatusBarHidden(true, withAnimation:UIStatusBarAnimationSlide)

    @window = UIWindow.alloc.initWithFrame(UIScreen.mainScreen.bounds)
    @window.rootViewController = FirstController.new
    @window.rootViewController.wantsFullScreenLayout = true
    @window.makeKeyAndVisible

    true
  end

end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
teacup-1.2.9 app/app_delegate.rb
teacup-1.2.8 app/app_delegate.rb
teacup-1.2.7 app/app_delegate.rb
teacup-1.2.5 app/app_delegate.rb
teacup-1.2.4 app/app_delegate.rb
teacup-1.2.3 app/app_delegate.rb
teacup-1.2.2 app/app_delegate.rb
teacup-1.0.4 app/app_delegate.rb
teacup-1.0.3 app/app_delegate.rb
teacup-1.0.2 app/app_delegate.rb
teacup-1.0.1 app/app_delegate.rb
teacup-1.0.0 app/app_delegate.rb