Sha256: bce77cda89b93bc88dad7b6d7ce2a0aeca67356aba9dd05bbb677c5aa8ce7650

Contents?: true

Size: 369 Bytes

Versions: 4

Compression:

Stored size: 369 Bytes

Contents

class AppDelegate
  def application(application, didFinishLaunchingWithOptions: options)
    @window = UIWindow.alloc.initWithFrame(UIScreen.mainScreen.bounds)
    main_ctlr = MainController.new
    nav_ctlr = UINavigationController.alloc.initWithRootViewController(main_ctlr)
    @window.rootViewController = nav_ctlr
    @window.makeKeyAndVisible

    true
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
motion-kit-templates-1.0.3 templates/mk-ios/files/app/app_delegate.rb
motion-kit-templates-1.0.2 templates/mk-ios/files/app/app_delegate.rb
motion-kit-templates-1.0.1 templates/mk-ios/files/app/app_delegate.rb
motion-kit-templates-1.0.0 templates/mk-ios/files/app/app_delegate.rb