Sha256: 0df8882396371c87e7e44e58080794069271292c6f332a28c8dc87f7f62a8d0a

Contents?: true

Size: 505 Bytes

Versions: 1

Compression:

Stored size: 505 Bytes

Contents

class AppDelegate
  def application(application, didFinishLaunchingWithOptions:launchOptions)
    @window = UIWindow.alloc.initWithFrame(UIScreen.mainScreen.bounds)
    
    @window.backgroundColor = UIColor.whiteColor
    @window.makeKeyAndVisible()
    
    viewController = MotionGLController.alloc.initWithNibName(nil, bundle:nil)
    @window.addSubview(viewController.view)
    viewController.preferredFramesPerSecond = 60
    @window.rootViewController = viewController    
    true
  end
  
  
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rubymotionr-0.0.1 spec/multiple-rubymotion-apps/HelloGL/app/app_delegate.rb