Class: RootViewController

Inherits:
UIViewController
  • Object
show all
Defined in:
app/controller/root_view_controller.rb

Instance Method Summary collapse

Instance Method Details

#viewDidLoadObject



3
4
5
6
7
8
9
10
11
12
# File 'app/controller/root_view_controller.rb', line 3

def viewDidLoad
  super
    Entries.all do |result|
      if result
        p result
      else
        p "error"
      end
    end
end