rubymotion/BubbleWrap

View on GitHub
samples/alert/app/app_delegate.rb

Summary

Maintainability
A
0 mins
Test Coverage
class AppDelegate
  def application(application, didFinishLaunchingWithOptions:launchOptions)
    @window = UIWindow.alloc.initWithFrame(UIScreen.mainScreen.bounds)
    @window.rootViewController = AlertViewController.alloc.init
    @window.makeKeyAndVisible
    true
  end
end