class ProMotion::DelegateParent

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

Public Instance Methods

application(application, didFinishLaunchingWithOptions:options) click to toggle source
# File lib/ProMotion/delegate/delegate_parent.rb, line 7
def application(application, didFinishLaunchingWithOptions:options)
  true
end