Changed PM::SectionedTable to PM::Table

This commit is contained in:
Jamon Holmgren
2013-05-27 18:52:34 -07:00
parent c421488aa2
commit 7a2d72d3ad
3 changed files with 3 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
module ProMotion
module GroupedTable
include SectionedTable
include Table
include RefreshableTable
def table_view

View File

@@ -1,6 +1,6 @@
module ProMotion
module PlainTable
include SectionedTable
include Table
include SearchableTable
include RefreshableTable

View File

@@ -3,6 +3,7 @@ module ProMotion
# 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