Class: ContainerController

Inherits:
UINavigationController
  • Object
show all
Defined in:
app/controllers/container_controller.rb

Instance Method Summary collapse

Instance Method Details

#initObject



2
3
4
5
6
7
8
# File 'app/controllers/container_controller.rb', line 2

def init
  super.tap do
    controller = A.new
    controller.navigationItem.title = "A"
    self.setViewControllers( [controller], animated: false )
  end
end