class ProMotion::FormViewController
Public Class Methods
new(args = {})
click to toggle source
# File lib/ProMotion/form/form_view_controller.rb, line 3 def self.new(args = {}) s = self.alloc.init s.screen_init(args) if s.respond_to?(:screen_init) s end
Public Instance Methods
didRotateFromInterfaceOrientation(orientation)
click to toggle source
# File lib/ProMotion/form/form_view_controller.rb, line 50 def didRotateFromInterfaceOrientation(orientation) self.on_rotate end
loadView()
click to toggle source
Calls superclass method
# File lib/ProMotion/form/form_view_controller.rb, line 9 def loadView self.respond_to?(:load_view) ? self.load_view : super end
shouldAutorotate()
click to toggle source
# File lib/ProMotion/form/form_view_controller.rb, line 42 def shouldAutorotate self.should_autorotate end
shouldAutorotateToInterfaceOrientation(orientation)
click to toggle source
# File lib/ProMotion/form/form_view_controller.rb, line 38 def shouldAutorotateToInterfaceOrientation(orientation) self.should_rotate(orientation) end
viewDidAppear(animated)
click to toggle source
Calls superclass method
# File lib/ProMotion/form/form_view_controller.rb, line 23 def viewDidAppear(animated) super self.view_did_appear(animated) if self.respond_to?("view_did_appear:") end
viewDidDisappear(animated)
click to toggle source
Calls superclass method
# File lib/ProMotion/form/form_view_controller.rb, line 33 def viewDidDisappear(animated) self.view_did_disappear(animated) if self.respond_to?("view_did_disappear:") super end
viewDidLoad()
click to toggle source
Calls superclass method
# File lib/ProMotion/form/form_view_controller.rb, line 13 def viewDidLoad super self.view_did_load if self.respond_to?(:view_did_load) end
viewWillAppear(animated)
click to toggle source
Calls superclass method
# File lib/ProMotion/form/form_view_controller.rb, line 18 def viewWillAppear(animated) super self.view_will_appear(animated) if self.respond_to?("view_will_appear:") end
viewWillDisappear(animated)
click to toggle source
Calls superclass method
# File lib/ProMotion/form/form_view_controller.rb, line 28 def viewWillDisappear(animated) self.view_will_disappear(animated) if self.respond_to?("view_will_disappear:") super end
willRotateToInterfaceOrientation(orientation, duration:duration)
click to toggle source
# File lib/ProMotion/form/form_view_controller.rb, line 46 def willRotateToInterfaceOrientation(orientation, duration:duration) self.will_rotate(orientation, duration) end