module ProMotion # You can inherit a table screen from any UITableViewController if you include TableScreenModule # Just make sure to implement the Obj-C methods in cocoatouch/TableViewController.rb. class TableScreen < TableViewController include ProMotion::TableScreenModule end class GroupedTableScreen < TableScreen include ProMotion::MotionTable::GroupedTable end class SectionedTableScreen < TableScreen include ProMotion::MotionTable::SectionedTable end end