lib/ProMotion/screens/table_screen.rb in ProMotion-0.6.5 vs lib/ProMotion/screens/table_screen.rb in ProMotion-0.7.0

- old
+ new

@@ -1,15 +1,16 @@ 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 + # Includes PM::PlainTable already end class GroupedTableScreen < TableScreen - include ProMotion::MotionTable::GroupedTable + include ProMotion::GroupedTable end class SectionedTableScreen < TableScreen - include ProMotion::MotionTable::SectionedTable + include ProMotion::SectionedTable end end \ No newline at end of file