Sha256: e94324d0bd522fb32c127033e69ae1fde6ed78cbb196ad168b0734c821b2a82f

Contents?: true

Size: 430 Bytes

Versions: 26

Compression:

Stored size: 430 Bytes

Contents

class AppDelegate
  def application(application, didFinishLaunchingWithOptions:launchOptions)
    @window = UIWindow.alloc.initWithFrame(UIScreen.mainScreen.bounds)
    myNavController = RootController.alloc.init

    @window.rootViewController = UINavigationController.alloc.initWithRootViewController(myNavController)
    @window.rootViewController.wantsFullScreenLayout = true
    @window.makeKeyAndVisible

    true
  end
end

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
teacup-1.3.4 samples/AutoLayout/app/app_delegate.rb
teacup-1.3.3 samples/AutoLayout/app/app_delegate.rb
teacup-1.3.2 samples/AutoLayout/app/app_delegate.rb
teacup-1.3.1 samples/AutoLayout/app/app_delegate.rb
teacup-1.3.0 samples/AutoLayout/app/app_delegate.rb
teacup-1.2.9 samples/AutoLayout/app/app_delegate.rb