Module: MotionTable::PlainTable

Includes:
SearchableTable, SectionedTable
Defined in:
lib/motion-table/plain_table.rb

Instance Method Summary collapse

Methods included from SearchableTable

#makeSearchable, #searchDisplayController, #searchDisplayControllerWillBeginSearch, #searchDisplayControllerWillEndSearch

Methods included from SectionedTable

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

Instance Method Details

#tableViewObject



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

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