Class: ProMotion::DelegateParent

Inherits:
Object
  • Object
show all
Defined in:
lib/ProMotion/delegate/delegate_parent.rb

Overview

This is a workaround to a RubyMotion bug that displays an error message when calling ‘super` from application:didFinishLaunchingWithOptions: (which you sometimes need to do when using a custom AppDelegate parent class). See issue: github.com/clearsightstudio/ProMotion/issues/116

Direct Known Subclasses

Delegate

Instance Method Summary collapse

Instance Method Details

#application(application, didFinishLaunchingWithOptions: options) ⇒ Object



7
8
9
# File 'lib/ProMotion/delegate/delegate_parent.rb', line 7

def application(application, didFinishLaunchingWithOptions:options)
  true
end