Class: ProMotion::ViewController

Inherits:
UIViewController
  • Object
show all
Defined in:
lib/ProMotion/cocoatouch/ViewController.rb

Direct Known Subclasses

Screen

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.new(args = {}) ⇒ Object



3
4
5
6
7
# File 'lib/ProMotion/cocoatouch/ViewController.rb', line 3

def self.new(args = {})
  s = self.alloc.initWithNibName(nil, bundle:nil)
  s.on_create(args) if s.respond_to?(:on_create)
  s
end

Instance Method Details

#didRotateFromInterfaceOrientation(orientation) ⇒ Object



48
49
50
# File 'lib/ProMotion/cocoatouch/ViewController.rb', line 48

def didRotateFromInterfaceOrientation(orientation)
  self.on_rotate
end

#shouldAutorotateObject



40
41
42
# File 'lib/ProMotion/cocoatouch/ViewController.rb', line 40

def shouldAutorotate
  self.should_autorotate
end

#shouldAutorotateToInterfaceOrientation(orientation) ⇒ Object



36
37
38
# File 'lib/ProMotion/cocoatouch/ViewController.rb', line 36

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

#viewDidAppear(animated) ⇒ Object



19
20
21
22
# File 'lib/ProMotion/cocoatouch/ViewController.rb', line 19

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

#viewDidDisappear(animated) ⇒ Object



29
30
31
32
33
34
# File 'lib/ProMotion/cocoatouch/ViewController.rb', line 29

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

#viewDidLoadObject



9
10
11
12
# File 'lib/ProMotion/cocoatouch/ViewController.rb', line 9

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

#viewWillAppear(animated) ⇒ Object



14
15
16
17
# File 'lib/ProMotion/cocoatouch/ViewController.rb', line 14

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

#viewWillDisappear(animated) ⇒ Object



24
25
26
27
# File 'lib/ProMotion/cocoatouch/ViewController.rb', line 24

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

#willRotateToInterfaceOrientation(orientation, duration: duration) ⇒ Object



44
45
46
# File 'lib/ProMotion/cocoatouch/ViewController.rb', line 44

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