Sha256: 4cf9051a2b134d6289b1eb4fb0432d81ed1a4c98cc38b9358261911118e54c2d

Contents?: true

Size: 533 Bytes

Versions: 9

Compression:

Stored size: 533 Bytes

Contents

class AppDelegate
  def application(application, didFinishLaunchingWithOptions:launchOptions)
    rootViewController = UIViewController.alloc.init
    rootViewController.title = 'testios'
    rootViewController.view.backgroundColor = UIColor.whiteColor

    navigationController = UINavigationController.alloc.initWithRootViewController(rootViewController)

    @window = UIWindow.alloc.initWithFrame(UIScreen.mainScreen.bounds)
    @window.rootViewController = navigationController
    @window.makeKeyAndVisible

    true
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
motion-flow-0.1.8 template/flow/files/app/ios/app_delegate.rb
motion-flow-0.1.7 template/flow/files/app/ios/app_delegate.rb
motion-flow-0.1.6 template/flow/files/app/ios/app_delegate.rb
motion-flow-0.1.5 template/flow/files/app/ios/app_delegate.rb
motion-flow-0.1.4 template/flow/files/app/ios/app_delegate.rb
motion-flow-0.1.3 template/flow/files/app/ios/app_delegate.rb
motion-flow-0.1.2 template/flow/files/app/ios/app_delegate.rb
motion-flow-0.1.1 template/flow/files/app/ios/app_delegate.rb
motion-flow-0.1 template/flow/files/app/ios/app_delegate.rb