class TestSuiteDelegate

Attributes

window[RW]

Public Instance Methods

application(application, didFinishLaunchingWithOptions:launchOptions) click to toggle source
# File motion/test_suite_delegate.rb, line 4
def application(application, didFinishLaunchingWithOptions:launchOptions)
  @window = UIWindow.alloc.initWithFrame(UIScreen.mainScreen.bounds)
  @window.rootViewController = UIViewController.alloc.init
  @window.makeKeyAndVisible
  true
end