Sha256: 4630c138d4052255b993ee8ae12b62cff936222b1e4bdfafcca76dced2655503

Contents?: true

Size: 399 Bytes

Versions: 12

Compression:

Stored size: 399 Bytes

Contents

class AppDelegate

  def application(application, didFinishLaunchingWithOptions:launchOptions)
    application.setStatusBarStyle(UIStatusBarStyleBlackTranslucent)

    @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-0.3.12 app/app_delegate.rb
teacup-0.3.11 app/app_delegate.rb
teacup-0.3.10 app/app_delegate.rb
teacup-0.3.9 app/app_delegate.rb
teacup-0.3.8 app/app_delegate.rb
teacup-0.3.7 app/app_delegate.rb
teacup-0.3.6 app/app_delegate.rb
teacup-0.3.5 app/app_delegate.rb
teacup-0.3.4 app/app_delegate.rb
teacup-0.3.3 app/app_delegate.rb
teacup-0.3.2 app/app_delegate.rb
teacup-0.3.1 app/app_delegate.rb