module ProMotion::MotionTable module PlainTable include ::ProMotion::MotionTable::SectionedTable include ::ProMotion::MotionTable::SearchableTable def tableView @tableView ||= UITableView.alloc.initWithFrame(self.view.frame, style:UITableViewStylePlain) @tableView.dataSource = self; @tableView.delegate = self; return @tableView end end end