Sha256: 12e525b76b34b6dfd27b36c25f47f79cc4009b3ae5b11ef575f913de485f2120

Contents?: true

Size: 1.26 KB

Versions: 10

Compression:

Stored size: 1.26 KB

Contents

class ScreenModuleViewController < UIViewController
  include PM::ScreenModule
  title 'Test Title'

  # Get rid of such hackiness when RubyMotion bug is fixed...
  
  def self.new(args = {})
    s = self.alloc.initWithNibName(nil, bundle:nil)
    s.on_create(args) if s.respond_to?(:on_create)
    s
  end

  def viewDidLoad
    super
    self.view_did_load if self.respond_to?(:view_did_load)
  end

  def viewWillAppear(animated)
    super
    self.view_will_appear(animated) if self.respond_to?("view_will_appear:")
  end

  def viewDidAppear(animated)
    super
    self.view_did_appear(animated) if self.respond_to?("view_did_appear:")
  end

  def viewWillDisappear(animated)
    self.view_will_disappear(animated) if self.respond_to?("view_will_disappear:")
    super
  end

  def viewDidDisappear(animated)
    if self.respond_to?("view_did_disappear:")
      self.view_did_disappear(animated)
    end
    super
  end

  def shouldAutorotateToInterfaceOrientation(orientation)
    self.should_rotate(orientation)
  end

  def shouldAutorotate
    self.should_autorotate
  end

  def willRotateToInterfaceOrientation(orientation, duration:duration)
    self.will_rotate(orientation, duration)
  end

  def didRotateFromInterfaceOrientation(orientation)
    self.on_rotate
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
ProMotion-0.7.4 spec/helpers/screen_module_view_controller.rb
ProMotion-0.7.3 spec/helpers/screen_module_view_controller.rb
ProMotion-0.7.2 spec/helpers/screen_module_view_controller.rb
ProMotion-0.7.1 spec/helpers/screen_module_view_controller.rb
ProMotion-0.7.0 spec/helpers/screen_module_view_controller.rb
ProMotion-0.6.5 spec/helpers/screen_module_view_controller.rb
ProMotion-0.6.4 spec/helpers/screen_module_view_controller.rb
ProMotion-0.6.3 spec/helpers/screen_module_view_controller.rb
ProMotion-0.6.2 spec/helpers/screen_module_view_controller.rb
ProMotion-0.6.1 spec/helpers/screen_module_view_controller.rb