Module: MotionTable::GroupedTable

Includes:
SectionedTable
Included in:
TestViewController
Defined in:
lib/motion-table/grouped_table.rb

Instance Method Summary collapse

Methods included from SectionedTable

#accessoryToggledSwitch, #cellAtSectionAndIndex, #createTableViewFromData, #numberOfSectionsInTableView, #sectionAtIndex, #sectionIndexTitlesForTableView, #setTableViewData, #triggerAction, #updateTableViewData

Instance Method Details

#tableViewObject



5
6
7
8
9
10
# File 'lib/motion-table/grouped_table.rb', line 5

def tableView
  @tableView ||= UITableView.alloc.initWithFrame(self.view.frame, style:UITableViewStyleGrouped)
  @tableView.dataSource = self;
  @tableView.delegate = self;
  return @tableView
end