Sha256: 71e33ce54b6fb240759a0082041f2ee0600602a594e85c7035974e29791f551f

Contents?: true

Size: 1.27 KB

Versions: 1

Compression:

Stored size: 1.27 KB

Contents

module ProMotion
  class TableViewController < UITableViewController
    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
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ProMotion-0.4.0 lib/ProMotion/_cocoatouch/TableViewController.rb