Sha256: f575f6a19825f19ab517c90e14d22ba55869bbb107f0c0370986ba3b0e2839fe

Contents?: true

Size: 1.25 KB

Versions: 3

Compression:

Stored size: 1.25 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)
      self.view_did_disappear(animated) if self.respond_to?("view_did_disappear:")
      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

3 entries across 3 versions & 1 rubygems

Version Path
ProMotion-0.5.2 lib/ProMotion/cocoatouch/TableViewController.rb
ProMotion-0.5.0 lib/ProMotion/cocoatouch/TableViewController.rb
ProMotion-0.4.1 lib/ProMotion/_cocoatouch/TableViewController.rb