Class: AnimationChainController

Inherits:
UIViewController show all
Defined in:
app/animation_chain_controller.rb

Instance Method Summary collapse

Methods inherited from UIViewController

#<<, #dismiss_modal, #pop, #present_modal, #present_modal_in_nav, #push, #sugarcube_cleanup, #to_s

Instance Method Details

#loadViewObject



3
4
5
6
7
8
9
10
# File 'app/animation_chain_controller.rb', line 3

def loadView
  super.tap do
    @label = 'Hi!'.uilabel
    @label.center = self.view.center
    @label.textColor = :white.uicolor
    self.view << @label
  end
end