motion-prime/sections/table/table_delegate.rb in motion-prime-0.9.8 vs motion-prime/sections/table/table_delegate.rb in motion-prime-0.9.9
- old
+ new
@@ -18,11 +18,11 @@
table_section.instance_eval(&block)
end
end
def numberOfSectionsInTableView(table)
- table_section.number_of_groups(table)
+ table_section.number_of_groups
end
def tableView(table, cellForRowAtIndexPath: index)
cur_call_time = Time.now.to_f
cur_call_offset = table.contentOffset.y
@@ -32,30 +32,30 @@
@deceleration_speed = offset_delta/time_delta
end
@prev_call_time = cur_call_time
@prev_call_offset = cur_call_offset
- table_section.cell_for_index(table, index)
+ table_section.cell_for_index(index)
end
def tableView(table, numberOfRowsInSection: group)
table_section.cell_sections_for_group(group).try(:count).to_i
end
def tableView(table, heightForRowAtIndexPath: index)
- table_section.height_for_index(table, index)
+ table_section.height_for_index(index)
end
def tableView(table, didSelectRowAtIndexPath:index)
- table_section.on_click(table, index)
+ table_section.on_click(index)
end
def tableView(table, viewForHeaderInSection: group)
- table_section.header_cell_in_group(table, group)
+ table_section.header_cell_in_group(group)
end
def tableView(table, heightForHeaderInSection: group)
- table_section.height_for_header_in_group(table, group)
+ table_section.height_for_header_in_group(group)
end
def scrollViewDidScroll(scroll)
table_section.scroll_view_did_scroll(scroll)
end
\ No newline at end of file